Skip to content

Commit 0de01c1

Browse files
jordanpadamsclaude
andcommitted
Replace third-party commit action with git CLI commands
Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
1 parent cde8223 commit 0de01c1

1 file changed

Lines changed: 6 additions & 4 deletions

File tree

.github/workflows/postman-collection-docs.yml

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,9 @@ jobs:
2525
run: python docker/postman/generate_collection_docs.py
2626

2727
- 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'
28+
run: |
29+
git config user.name "github-actions[bot]"
30+
git config user.email "github-actions[bot]@users.noreply.github.com"
31+
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

Comments
 (0)