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 cde9f15 commit 88bb4dfCopy full SHA for 88bb4df
.github/workflows/update-prices.yml
@@ -27,14 +27,7 @@ jobs:
27
run: node scripts/update-prices.js
28
29
- name: Commit and push changes
30
- run: |
31
- git config --local user.email "github-actions[bot]@users.noreply.github.com"
32
- git config --local user.name "github-actions[bot]"
33
-
34
- if git diff --quiet; then
35
- echo "No changes to commit"
36
- else
37
- git add src/prices/rose-usd.json
38
- git commit -m "chore: update ROSE/USD prices"
39
- git push
40
- fi
+ uses: stefanzweifel/git-auto-commit-action@v7
+ with:
+ commit_message: "chore: update ROSE/USD prices"
+ file_pattern: src/prices/rose-usd.json
0 commit comments