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 ae043a6 commit 195880aCopy full SHA for 195880a
.github/workflows/update-changes.yaml
@@ -0,0 +1,24 @@
1
+name: Update CHANGES File
2
+on:
3
+ push:
4
+ paths-ignore:
5
+ - 'CHANGES'
6
+ branches:
7
+ - master
8
+jobs:
9
+ update-changes:
10
+ runs-on: ubuntu-latest
11
+ steps:
12
+ - uses: actions/checkout@master
13
+ with:
14
+ persist-credentials: false
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
19
+ - name: Commit & Push changes
20
+ uses: actions-js/push@master
21
22
+ github_token: ${{ secrets.GITHUB_TOKEN }}
23
+ branch: master
24
+ message: ${{ github.event.head_commit.message }}
0 commit comments