Skip to content

Commit

Permalink
Merge pull request #424 from quixio/autogenerate-docs
Browse files Browse the repository at this point in the history
Autogenerate documentation
  • Loading branch information
gwaramadze authored Jul 29, 2024
2 parents e424dbc + 88f62c2 commit db70760
Showing 1 changed file with 28 additions and 0 deletions.
28 changes: 28 additions & 0 deletions .github/workflows/docs.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
name: Generate Documentation

on:
push:
branches:
- main-copy

permissions: { }

jobs:
generate-docs:
permissions:
contents: write
pull-requests: write
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- run: pip install -r docs/build/requirements.txt
- run: python build.py
working-directory: ./docs/build
- uses: peter-evans/create-pull-request@v6
with:
commit-message: Update documentation
branch: update-documentation
delete-branch: true
title: 'Update Documentation'
body: 'This is the PR with the autogenerated documentation'
labels: 'documentation'

0 comments on commit db70760

Please sign in to comment.