We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ac125a9 commit d4a8757Copy full SHA for d4a8757
.github/workflows/make.yml
@@ -6,12 +6,14 @@ jobs:
6
report:
7
runs-on: ubuntu-latest
8
steps:
9
- - uses: actions/checkout@v3
+ - name: Checkout
10
+ uses: actions/checkout@v4
11
+ with:
12
+ token: ${{ secrets.ACTION_TOKEN }}
13
- name: Make docs
14
run: make all
- - name: Commit files
- run: |
- git config --global user.name 'dde-fite's github action'
15
- git config --global user.email 'dde-fite@users.noreply.github.com'
16
- git commit -am "Make pandoc"
17
- git push
+ - name: Commit and push changes
+ uses: devops-infra/action-commit-push@master
18
+ github_token: ${{ secrets.ACTION_TOKEN }}
19
+ commit_message: make documentation
0 commit comments