-
Notifications
You must be signed in to change notification settings - Fork 28
65 lines (59 loc) · 1.88 KB
/
docs.yaml
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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
---
name: "Sync Generated Docs"
on: # yamllint disable-line rule:truthy
push:
branches:
- "main"
env:
DOCS_REPO: "authzed/docs"
DOCS_BRANCH: "main"
GENERATED_DOCS_FILE: "docs/zed.md"
TARGET_DOCS_FILE: "pages/zed/zed.md"
CHANGES_DETECTED: false
permissions:
contents: "write"
pull-requests: "write"
actions: "write"
repository-projects: "write"
jobs:
sync-docs:
name: "Generate & Sync Documentation"
runs-on: "ubuntu-latest"
steps:
- uses: "actions/checkout@v4"
- uses: "authzed/actions/setup-go@main"
- uses: "authzed/actions/setup-mage@main"
- name: "Generate Documentation"
run: "mage gen:docs"
- name: "Checkout docs repository"
uses: "actions/checkout@v4"
with:
token: "${{ secrets.GITHUB_TOKEN }}"
repository: "${{ env.DOCS_REPO }}"
path: "docs-repo"
ref: "main"
- name: "Sync documentation changes"
run: |
mkdir -p docs-repo/$(dirname $TARGET_DOCS_FILE)
cp -v $GENERATED_DOCS_FILE docs-repo/$TARGET_DOCS_FILE
cd docs-repo
git config user.name "GitHub Actions"
git config user.email "[email protected]"
git add $TARGET_DOCS_FILE
if ! git diff --cached --exit-code; then
git commit -m "Update generated docs"
echo "CHANGES_DETECTED=true" >> $GITHUB_ENV
else
echo "No changes detected"
echo "CHANGES_DETECTED=false" >> $GITHUB_ENV
fi
- name: "Create pull request"
if: |
env.CHANGES_DETECTED == 'true'
uses: "peter-evans/create-pull-request@v7"
with:
token: "${{ secrets.GITHUB_TOKEN }}"
path: "docs-repo"
title: "Auto-generated PR: Update zed docs"
body: "This PR was auto-generated by GitHub Actions."
branch: "auto-update-branch"