There was an error while loading. Please reload this page.
1 parent cde8223 commit 0de01c1Copy full SHA for 0de01c1
1 file changed
.github/workflows/postman-collection-docs.yml
@@ -25,7 +25,9 @@ jobs:
25
run: python docker/postman/generate_collection_docs.py
26
27
- name: Commit generated docs
28
- uses: stefanzweifel/git-auto-commit-action@v5
29
- with:
30
- commit_message: 'docs: regenerate postman_collection.md [skip ci]'
31
- file_pattern: 'docker/postman/postman_collection.md'
+ run: |
+ git config user.name "github-actions[bot]"
+ git config user.email "github-actions[bot]@users.noreply.github.com"
+ git add docker/postman/postman_collection.md
32
+ git diff --cached --quiet || git commit -m "docs: regenerate postman_collection.md [skip ci]"
33
+ git push
0 commit comments