aboutsummaryrefslogtreecommitdiffstats
path: root/.github
diff options
context:
space:
mode:
Diffstat (limited to '.github')
-rw-r--r--.github/workflows/codespell.yml2
-rw-r--r--.github/workflows/docgen.yml4
2 files changed, 3 insertions, 3 deletions
diff --git a/.github/workflows/codespell.yml b/.github/workflows/codespell.yml
index 0cf18520..7a6cfe13 100644
--- a/.github/workflows/codespell.yml
+++ b/.github/workflows/codespell.yml
@@ -18,4 +18,4 @@ jobs:
pip install codespell
- name: Use codespell
run: |
- codespell --quiet-level=2 --check-hidden --skip=CONFIG.md --ignore-words=.codespellignorewords || exit
+ codespell --quiet-level=2 --check-hidden --skip=./doc/server_configurations.md --ignore-words=.codespellignorewords || exit
diff --git a/.github/workflows/docgen.yml b/.github/workflows/docgen.yml
index a6c3bd55..b7c123a2 100644
--- a/.github/workflows/docgen.yml
+++ b/.github/workflows/docgen.yml
@@ -22,11 +22,11 @@ jobs:
- name: Commit changes
env:
COMMIT_MSG: |
- docs: update CONFIG.md
+ docs: update server_configurations.md
skip-checks: true
run: |
git config user.name github-actions
git config user.email github-actions@github.com
- git add CONFIG.md
+ git add doc/server_configurations.md
# Only commit and push if we have changes
git diff --quiet && git diff --staged --quiet || (git commit -m "${COMMIT_MSG}"; git push)