Skip to content

Commit

Permalink
fix: Attach body for gh pr
Browse files Browse the repository at this point in the history
  • Loading branch information
atsuyaw committed Oct 22, 2024
1 parent 9a9fa56 commit 25b8b6a
Showing 1 changed file with 6 additions and 5 deletions.
11 changes: 6 additions & 5 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,8 +19,9 @@ jobs:
- name: Create PR
env:
GH_TOKEN: ${{ github.token }}
run: >-
gh pr create
--base main
--head "${{ github.ref_name }}"
--title "Release/${{ github.ref_name }}"
run: |
gh pr create \
--base "main" \
--head "${{ github.ref_name }}" \
--title "Release/${{ github.ref_name }}" \
--body "GitHub actions" \

0 comments on commit 25b8b6a

Please sign in to comment.