mirror of
https://github.com/netbirdio/netbird.git
synced 2024-11-07 16:54:16 +01:00
22 lines
528 B
YAML
22 lines
528 B
YAML
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 }}" }' |