Compare commits

...

2 Commits

Author SHA1 Message Date
Travis Ralston
c5f6aa75b0 changelog 2025-06-19 11:40:46 -06:00
Travis Ralston
0596eafc53 Make 'fix lint' action also regenerate config docs 2025-06-19 11:38:53 -06:00
2 changed files with 11 additions and 0 deletions

View File

@@ -24,6 +24,9 @@ jobs:
components: clippy, rustfmt
- uses: Swatinem/rust-cache@9d47c6ad4b02e050fd481d890b2ea34778fd09d6 # v2.7.8
- name: Install PyYAML
run: pip install PyYAML==6.0.2
- name: Setup Poetry
uses: matrix-org/setup-python-poetry@5bbf6603c5c930615ec8a29f1b5d7d258d905aa4 # v2.0.0
with:
@@ -44,6 +47,13 @@ jobs:
- run: cargo fmt
continue-on-error: true
- name: Regenerate config
run: |
scripts-dev/gen_config_documentation.py \
schema/synapse-config.schema.yaml \
> docs/usage/configuration/config_documentation.md
continue-on-error: true
- uses: stefanzweifel/git-auto-commit-action@b863ae1933cb653a53c021fe36dbb774e1fb9403 # v5.2.0
with:
commit_message: "Attempt to fix linting"

1
changelog.d/18579.misc Normal file
View File

@@ -0,0 +1 @@
Make 'fix lint' action also regenerate config docs.