Skip to content

Commit

Permalink
Add sync-tag.yml GitHub workflow (#1362)
Browse files Browse the repository at this point in the history
  • Loading branch information
surik authored Dec 8, 2023
1 parent 006ba32 commit 050f140
Showing 1 changed file with 22 additions and 0 deletions.
22 changes: 22 additions & 0 deletions .github/workflows/sync-tag.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
name: sync tag

on:
push:
tags:
- 'v*'

concurrency:
group: ${{ github.workflow }}-${{ github.ref }}-${{ github.head_ref || github.actor_id }}
cancel-in-progress: true

jobs:
trigger_sync_tag:
runs-on: ubuntu-latest
steps:
- name: Trigger release tag sync
uses: benc-uk/workflow-dispatch@v1
with:
workflow: sync-tag.yml
repo: ${{ secrets.UPSTREAM_REPO }}
token: ${{ secrets.NC_GITHUB_TOKEN }}
inputs: '{ "tag": "${{ github.ref_name }}" }'

0 comments on commit 050f140

Please sign in to comment.