We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1390c87 commit baeb259Copy full SHA for baeb259
.github/workflows/sync_branches_with_ext_trigger.yml
@@ -0,0 +1,14 @@
1
+---
2
+name: Sync a target branch with source branch
3
+on: # yamllint disable-line rule:truthy
4
+ repository_dispatch:
5
+ types: [trigger-sync]
6
+
7
+jobs:
8
+ trigger-sync:
9
+ uses: openstack-k8s-operators/ci-framework/.github/workflows/sync_branches_reusable_workflow.yml@main
10
+ with:
11
+ source-branch: ${{ github.event.client_payload.source-branch }}
12
+ target-branch: ${{ github.event.client_payload.target-branch }}
13
+ secrets:
14
+ ssh-key: ${{ secrets.DEPLOY_KEY }}
0 commit comments