-
Notifications
You must be signed in to change notification settings - Fork 26
46 lines (38 loc) · 1.27 KB
/
schemas.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
46
name: 📄 Schemas
on:
push:
branches: [main]
pull_request:
branches: ["**"]
permissions:
contents: write
pull-requests: write
jobs:
schemas:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
with:
fetch-depth: 0
token: ${{ secrets.HOMESTAR_UPDATE_TOKEN }}
ref: ${{ github.event.pull_request.head.sha }}
- name: Install Rust Toolchain
uses: dtolnay/rust-toolchain@stable
- name: Run generate schemas
run: cargo run --bin schemas
- name: Check for changed files
id: changed-files
uses: tj-actions/changed-files@v42
with:
files_yaml: |
docs:
- 'homestar-runtime/schemas/docs/*.json'
- name: Push changes
if: steps.changed-files-yaml.outputs.docs_any_changed == 'true'
run: |
git config user.name "${GITHUB_ACTOR}"
git config user.email "${GITHUB_ACTOR}@users.noreply.github.com"
git remote set-url origin https://x-access-token:${GITHUB_TOKEN}@github.com/${GITHUB_REPOSITORY}.git
git commit -am "chore(schemas): update OpenRPC API doc and JSON schemas"
git push --force-with-lease origin HEAD:refs/heads/${{ github.head_ref }}