We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6d4296e commit 21c35a2Copy full SHA for 21c35a2
1 file changed
.github/workflows/ci.yaml
@@ -29,17 +29,12 @@ jobs:
29
id: verify-changed-files
30
with:
31
files: README.md
32
- - name: Commit changes
+ - name: Commit and push changes
33
if: steps.verify-changed-files.outputs.files_changed == 'true'
34
run: |
35
git config --local user.email "action@github.com"
36
git config --local user.name "GitHub Action"
37
git add README.md
38
git commit -m "chore: Updated coverage badge."
39
- - name: Push changes
40
- if: steps.verify-changed-files.outputs.files_changed == 'true'
41
- uses: ad-m/github-push-action@master
42
- with:
43
- github_token: ${{ github.token }}
44
- branch: ${{ github.head_ref }}
+ git push
45
0 commit comments