We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 118512d commit ebfcea4Copy full SHA for ebfcea4
.github/workflows/docs.yml
@@ -0,0 +1,28 @@
1
+name: Generate Documentation
2
+
3
+on:
4
+ push:
5
+ branches:
6
+ - main-copy
7
8
+permissions: { }
9
10
+jobs:
11
+ generate-docs:
12
+ permissions:
13
+ contents: write
14
+ pull-requests: write
15
+ runs-on: ubuntu-latest
16
+ steps:
17
+ - uses: actions/checkout@v4
18
+ - run: pip install -r docs/build/requirements.txt
19
+ - run: python build.py
20
+ working-directory: ./docs/build
21
+ - uses: peter-evans/create-pull-request@v6
22
+ with:
23
+ commit-message: Update documentation
24
+ branch: update-documentation
25
+ delete-branch: true
26
+ title: 'Update Documentation'
27
+ body: 'This is the PR with the autogenerated documentation'
28
+ labels: 'documentation'
0 commit comments