Skip to content

Commit

Permalink
fixup! Chore(ci): Introduce new release workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
literat committed Oct 4, 2024
1 parent 595d80a commit ee47d05
Showing 1 changed file with 6 additions and 8 deletions.
14 changes: 6 additions & 8 deletions .github/workflows/release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -79,13 +79,11 @@ jobs:
git push --set-upstream origin ${{ needs.release-branch.outputs.release-branch }} && git push --tags
- name: Create Pull Request
# uses: peter-evans/create-pull-request@v7
# with:
# token: ${{ secrets.GITHUB_TOKEN }}
# branch: ${{ needs.release-branch.outputs.release-branch }}
# base: ${{ env.BRANCH_NAME }}
# title: 'Release'
# body: 'Automated release PR for ${{ env.BRANCH_NAME }}'
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'
run: |
gh pr create \
-B ${{ env.BRANCH_NAME }} \
-H ${{ needs.release-branch.outputs.release-branch }} \
--title '🎉 Release' \
--body 'Automated release PR for ${{ env.BRANCH_NAME }}'
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

0 comments on commit ee47d05

Please sign in to comment.