diff options
| author | zyoshoka <107108195+zyoshoka@users.noreply.github.com> | 2024-05-27 20:11:39 +0900 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2024-05-27 20:11:39 +0900 |
| commit | cf2256cf4162f0f58fea3afbe08d9805451a9efc (patch) | |
| tree | 33216af34ef504af3c4b5475e6bb83b140d74dee /.github | |
| parent | [ci skip] Delete .github/FUNDING.yml (diff) | |
| download | sharkey-cf2256cf4162f0f58fea3afbe08d9805451a9efc.tar.gz sharkey-cf2256cf4162f0f58fea3afbe08d9805451a9efc.tar.bz2 sharkey-cf2256cf4162f0f58fea3afbe08d9805451a9efc.zip | |
fix: CHANGELOG not reflecting correctly (#13888)
* fix: CHANGELOG not reflecting correctly
* Update .github/workflows/release-edit-with-push.yml
Co-authored-by: anatawa12 <anatawa12@icloud.com>
---------
Co-authored-by: anatawa12 <anatawa12@icloud.com>
Diffstat (limited to '.github')
| -rw-r--r-- | .github/workflows/release-edit-with-push.yml | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/.github/workflows/release-edit-with-push.yml b/.github/workflows/release-edit-with-push.yml index 944b98eb7c..890cb047bd 100644 --- a/.github/workflows/release-edit-with-push.yml +++ b/.github/workflows/release-edit-with-push.yml @@ -37,4 +37,7 @@ jobs: # PRのnotesを更新 - name: Update PR run: | - gh pr edit ${{ steps.get_pr.outputs.pr_number }} --body "${{ steps.changelog.outputs.changelog }}" + gh pr edit "$PR_NUMBER" --body "$CHANGELOG" + env: + CHANGELOG: ${{ steps.changelog.outputs.changelog }} + PR_NUMBER: ${{ steps.get_pr.outputs.pr_number }} |