-
Notifications
You must be signed in to change notification settings - Fork 0
45 lines (37 loc) · 1.13 KB
/
generate-docs.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
name: Generate Documentation
on:
push:
branches:
- main
workflow_dispatch:
permissions:
contents: write
jobs:
generate_docs:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v3
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: '3.8'
- name: Install Docsible
run: |
pip install git+https://github.com/docsible/docsible.git
- name: Generate documentation for role
run: |
docsible -r ./ -g -o README.md -com -nob
- name: Check for documentation changes
env:
TOKEN: ${{ secrets.PERSONAL_ACCESS_TOKEN }}
run: |
git config user.name "github-actions[bot]"
git config user.email "github-actions[bot]@users.noreply.github.com"
git add .
if git diff --cached --exit-code; then
echo "No changes to commit";
else
git commit -m "Automated documentation update by GitHub Actions"
git push "https://${TOKEN}@github.com/docsible/thermo-core.git" HEAD:main
fi