Skip to content

Commit 30e98c6

Browse files
authored
Merge pull request #429 from quixio/autogenerate-docs
Autogenerate documentation
2 parents 00ca966 + ebfcea4 commit 30e98c6

File tree

1 file changed

+28
-0
lines changed

1 file changed

+28
-0
lines changed

.github/workflows/docs.yml

Lines changed: 28 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -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

Comments
 (0)