Skip to content

Commit

Permalink
chore: publish workflow trigger auto merge
Browse files Browse the repository at this point in the history
  • Loading branch information
sebastianwessel committed Feb 25, 2024
1 parent 2afa01d commit d4707cf
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion .github/workflows/release_version.yml
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,9 @@ jobs:
git tag -a "v${{ steps.bump_version.outputs.new_version }}" -m "v${{ steps.bump_version.outputs.new_version }}"
git push origin --follow-tags
- name: create pull request
run: gh pr create -B master -H ${{ steps.bump_version.outputs.new_branch }} --title 'Merge ${{ steps.bump_version.outputs.new_branch }} into master' --body 'Created by Github action'
run: |
gh pr create -B master -H ${{ steps.bump_version.outputs.new_branch }} --title 'Merge ${{ steps.bump_version.outputs.new_branch }} into master' --body 'Created by Github action'
gh pr merge ${{ steps.bump_version.outputs.new_branch }} --auto
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
- name: Publish to NPM
Expand Down

0 comments on commit d4707cf

Please sign in to comment.