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 8c41db7 commit 82df6ccCopy full SHA for 82df6cc
.github/workflows/update-changes.yaml
@@ -15,7 +15,11 @@ jobs:
15
fetch-depth: 0
16
- name: Update CHANGES file
17
run: |
18
- sed -i '1s/^/* ${{ github.event.head_commit.message }}. Thanks @${{ github.actor }}\n/' CHANGES
+ COMMIT="${{ github.event.head_commit.message }}"
19
+ PR_TITLE=`echo "${COMMIT}" | head -n 1`
20
+ echo "* ${PR_TITLE}" Thanks @${{ github.actor }} > TMP_CHANGES
21
+ cat CHANGES >> TMP_CHANGES
22
+ mv TMP_CHANGES CHANGES
23
- name: Commit & Push changes
24
uses: actions-js/push@master
25
with:
0 commit comments