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 a50d7ff commit 9d780a2Copy full SHA for 9d780a2
.github/workflows/docs.yaml
@@ -26,10 +26,15 @@ jobs:
26
run: |
27
pydoc-markdown pydoc-markdown.yml
28
29
- - name: Commit generated docs if changed
30
- uses: stefanzweifel/git-auto-commit-action@v4
+ - name: Create Pull Request if docs changed
+ uses: peter-evans/create-pull-request@v7
31
with:
32
- commit_message: "chore(docs): regenerate API docs"
33
- file_pattern: "docs/**/*.md"
34
- branch: development
35
- push: true
+ branch: docs/regenerate-api-docs
+ commit-message: chore(docs): regenerate API docs
+ title: chore(docs): regenerate API docs
+ body: |
36
+ This PR was automatically generated by the workflow to regenerate the API documentation.
37
+ add-paths: |
38
+ docs/api-reference/python/**
39
+ delete-branch: true
40
+
0 commit comments