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 44d10ed commit 0fd6bdeCopy full SHA for 0fd6bde
.github/workflows/main.yml
@@ -1,9 +1,9 @@
1
on:
2
push:
3
- branches:
+ branches:
4
- main
5
-
6
+
7
jobs:
8
changelogs:
9
runs-on: ubuntu-latest
@@ -12,7 +12,16 @@ jobs:
12
steps:
13
- name: Checkout
14
uses: actions/checkout@v2
15
- - name: Generate
+ - name: Generate
16
uses: tj-actions/[email protected]
17
+ - name: Commit change-logs
18
+ run: |
19
+ git config --local user.email "github-actions[bot]@users.noreply.github.com"
20
+ git config --local user.name "github-actions[bot]"
21
+ git commit -m "Generate change logs" -a
22
+ - name: Push change-logs
23
+ uses: ad-m/github-push-action@master
24
+ with:
25
+ branch: ${{ github.ref }}
26
27
0 commit comments