Skip to content

Commit 0b8fa4b

Browse files
Merge pull request #1084 from sauragar/stable
Adds workflow to trigger branch sync
2 parents 9ba5cdd + baeb259 commit 0b8fa4b

File tree

1 file changed

+14
-0
lines changed

1 file changed

+14
-0
lines changed
Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -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

Comments
 (0)