Add sync-main.yml GitHub workflow (#1359)

This commit is contained in:
Yury Gargay 2023-12-06 17:51:11 +01:00 committed by GitHub
parent 36d62f1844
commit b03343bc4d
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

22
.github/workflows/sync-main.yml vendored Normal file
View File

@ -0,0 +1,22 @@
name: sync main
on:
push:
branches:
- main
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}-${{ github.head_ref || github.actor_id }}
cancel-in-progress: true
jobs:
trigger_sync_main:
runs-on: ubuntu-latest
steps:
- name: Trigger main branch sync
uses: benc-uk/workflow-dispatch@v1
with:
workflow: sync-main.yml
repo: ${{ secrets.UPSTREAM_REPO }}
token: ${{ secrets.NC_GITHUB_TOKEN }}
inputs: '{ "sha": "${{ github.sha }}" }'