Skip to content

Commit 595d80a

Browse files
committed
fixup! Chore(ci): Introduce new release workflow
1 parent 6bccfe8 commit 595d80a

File tree

1 file changed

+10
-7
lines changed

1 file changed

+10
-7
lines changed

.github/workflows/release.yaml

+10-7
Original file line numberDiff line numberDiff line change
@@ -79,10 +79,13 @@ jobs:
7979
git push --set-upstream origin ${{ needs.release-branch.outputs.release-branch }} && git push --tags
8080
8181
- name: Create Pull Request
82-
uses: peter-evans/create-pull-request@v7
83-
with:
84-
token: ${{ secrets.GITHUB_TOKEN }}
85-
branch: ${{ needs.release-branch.outputs.release-branch }}
86-
base: ${{ env.BRANCH_NAME }}
87-
title: 'Release'
88-
body: 'Automated release PR for ${{ env.BRANCH_NAME }}'
82+
# uses: peter-evans/create-pull-request@v7
83+
# with:
84+
# token: ${{ secrets.GITHUB_TOKEN }}
85+
# branch: ${{ needs.release-branch.outputs.release-branch }}
86+
# base: ${{ env.BRANCH_NAME }}
87+
# title: 'Release'
88+
# body: 'Automated release PR for ${{ env.BRANCH_NAME }}'
89+
run: gh pr create -B ${{ env.BRANCH_NAME }} -H ${{ needs.release-branch.outputs.release-branch }} --title 'Merge branch_to_merge into base_branch' --body 'Created by Github action'
90+
env:
91+
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

0 commit comments

Comments
 (0)