Skip to content

Commit

Permalink
fix: trigger action on dev merges
Browse files Browse the repository at this point in the history
  • Loading branch information
KaustubhKumar05 committed Mar 15, 2024
1 parent 0ba911f commit 4377dcf
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/sync-alpha-to-main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ on:
pull_request:
types: [closed]
branches:
- main
- dev

jobs:
pull-request:
Expand All @@ -15,8 +15,8 @@ jobs:
if: github.event.pull_request.merged == true
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
source_branch: 'main'
source_branch: 'dev'
destination_branch: 'publish-alpha'
pr_title: 'Update publish-alpha'
pr_body: ':robot: Automated PR from main to publish-alpha'
pr_body: ':robot: Automated PR from dev to publish-alpha'
pr_label: 'auto-pr'

0 comments on commit 4377dcf

Please sign in to comment.