Skip to content

Commit b6ff3c4

Browse files
style: pre-commit fixes
1 parent 8250f3d commit b6ff3c4

2 files changed

Lines changed: 213 additions & 106 deletions

File tree

.github/workflows/update-indices-docs.yml

Lines changed: 10 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -11,43 +11,44 @@ jobs:
1111
update-docs:
1212
name: Update indices_reference.md
1313
runs-on: ubuntu-latest
14-
14+
1515
steps:
1616
- name: Checkout repository
1717
uses: actions/checkout@v4
1818
with:
1919
fetch-depth: 0
20-
20+
2121
- name: Set up Python
2222
uses: actions/setup-python@v5
2323
with:
2424
python-version: "3.12"
25-
25+
2626
- name: Install package
2727
run: |
2828
python -m pip install --upgrade pip
2929
python -m pip install -e .
30-
30+
3131
- name: Generate documentation
3232
run: |
3333
python scripts/generate_indices_docs.py
34-
34+
3535
- name: Check for changes
3636
id: git-check
3737
run: |
3838
git diff --exit-code docs/indices_reference.md || echo "changed=true" >> $GITHUB_OUTPUT
39-
39+
4040
- name: Create Pull Request
4141
if: steps.git-check.outputs.changed == 'true'
4242
uses: peter-evans/create-pull-request@v6
4343
with:
44-
commit-message: "docs: update indices_reference.md with latest schemas"
44+
commit-message:
45+
"docs: update indices_reference.md with latest schemas"
4546
title: "Update indices documentation with latest schemas"
4647
body: |
4748
This PR updates `docs/indices_reference.md` with the latest schema information from `idc-index-data`.
48-
49+
4950
The documentation was automatically generated by running `scripts/generate_indices_docs.py`.
50-
51+
5152
## Changes
5253
- Updated index table schemas
5354
- Refreshed Mermaid diagram with current table relationships

0 commit comments

Comments
 (0)