Skip to content

Commit

Permalink
fix(pull-request.yml): fix branch names in the 'gh pr create' command…
Browse files Browse the repository at this point in the history
… to correctly merge develop into master branch
  • Loading branch information
alisaitteke committed Jan 13, 2024
1 parent cd31f4d commit 91d9126
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/pull-request.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,6 @@ jobs:
uses: actions/checkout@v3

- name: create pull request
run: gh pr create -B develop -H master --title 'Merge develop into master' --body 'Created by Github action'
run: gh pr create -B master -H develop --title 'Merge develop into master' --body 'Created by Github action'
env:
GITHUB_TOKEN: ${{ secrets.GITH_PACKAGE_TOKEN }}

0 comments on commit 91d9126

Please sign in to comment.