We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent befea9a commit e6a38ddCopy full SHA for e6a38dd
.github/workflows/git_note_amend_message.yml
@@ -103,9 +103,11 @@ jobs:
103
---
104
type: amend-message
105
106
- ${{ inputs.message }}
107
EOF
108
+ # Append new commit message to Git note file:
109
+ printf '%s\n' '${{ inputs.message }}' >> "docs/git-notes/${{ inputs.commit_hash }}.txt"
110
+
111
# Create step summary:
112
echo "## Note for commit ${{ inputs.commit_hash }}:" >> $GITHUB_STEP_SUMMARY
113
cat "docs/git-notes/${{ inputs.commit_hash }}.txt" >> $GITHUB_STEP_SUMMARY
0 commit comments