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 f68d6fa commit 8ee992cCopy full SHA for 8ee992c
.github/workflows/update-sponsors.yml
@@ -77,7 +77,9 @@ jobs:
77
78
- name: Commit
79
if: steps.sponsors-after.outputs.changed == 'true'
80
- uses: EndBug/add-and-commit@v9
81
- with:
82
- message: 'chore: update sponsors'
83
- add: 'packages/docs/.vitepress/theme/components/sponsors.json README.md'
+ run: |
+ git config user.name "github-actions[bot]"
+ git config user.email "github-actions[bot]@users.noreply.github.com"
+ git add packages/docs/.vitepress/theme/components/sponsors.json README.md
84
+ git commit -m "chore: update sponsors" --no-verify
85
+ git push
0 commit comments