diff --git a/.github/workflows/trigger-sync.yml b/.github/workflows/trigger-sync.yml new file mode 100644 index 0000000..18af431 --- /dev/null +++ b/.github/workflows/trigger-sync.yml @@ -0,0 +1,20 @@ +name: Trigger sync + +description: + 'Trigger external sync workflow.' + +on: + workflow_dispatch: + pull_request: + branches: + - main + +jobs: + sync: + runs-on: ubuntu-latest + steps: + - name: Trigger sync + shell: sh + run: | + echo "Sync signal sent!" +