summaryrefslogtreecommitdiff
path: root/.github
diff options
context:
space:
mode:
authorzyoshoka <107108195+zyoshoka@users.noreply.github.com>2024-05-27 20:11:39 +0900
committerGitHub <noreply@github.com>2024-05-27 20:11:39 +0900
commitcf2256cf4162f0f58fea3afbe08d9805451a9efc (patch)
tree33216af34ef504af3c4b5475e6bb83b140d74dee /.github
parent[ci skip] Delete .github/FUNDING.yml (diff)
downloadsharkey-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.yml5
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 }}