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
10 changes: 10 additions & 0 deletions .github/workflows/quarterly-doc-audit.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,16 @@ jobs:
with:
fetch-depth: 1

- name: Disable git-lfs filters
# See admin's copy of this workflow for the full rationale: any file under this
# repo's filter=lfs .gitattributes patterns that was committed as raw, non-pointer
# content shows as spuriously "modified" to git once the lfs clean/smudge filter
# is active, which trips peter-evans/create-pull-request's internal git
# stash/checkout dance in the next Open-auto-fix-PR step. This repo currently has
# no matching binaries, so this is a defensive no-op kept consistent with the
# other 4 repos sharing this workflow.
run: git lfs uninstall --local || true

- name: Set up Go
uses: actions/setup-go@v7
with:
Expand Down
Loading