Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 8 additions & 1 deletion .github/workflows/quarterly-doc-audit.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,14 @@ jobs:
with:
fetch-depth: 1

- name: Disable git-lfs filters
# See admin/web workflow for the full rationale: any file under this repo's
# filter=lfs .gitattributes patterns that was committed as raw (non-pointer)
# content will otherwise show as spuriously "modified" to git, which can trip
# peter-evans/create-pull-request's internal git stash/checkout dance in the
# next Open-auto-fix-PR step. Harmless no-op if nothing is affected.
run: git lfs uninstall --local || true

- name: Set up Go
uses: actions/setup-go@v5
with:
Expand Down Expand Up @@ -101,7 +109,6 @@ jobs:
delete-branch: true
add-paths: |
**/*.md
**/*.mdx
.claude/qa/findings/*.json

- name: Upload JSON report
Expand Down
Loading