Skip to content

Commit

Permalink
ci: ignore symlinks in uniqueness check
Browse files Browse the repository at this point in the history
  • Loading branch information
frasertweedale authored and TristanCacqueray committed Jul 21, 2023
1 parent ea944d9 commit d262773
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/check-advisories.yml
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ jobs:
exit $RESULT
- name: Run advisory uniqueness checks
run: |
! find source/advisories -name '*.md' -print0 \
! find source/advisories -type f -name '*.md' -print0 \
| xargs -0n1 basename | sort | uniq -c | grep -E -v '[[:space:]]*1 '
- name: Publish OSV data
if: ${{ github.event_name == 'push' && github.ref_name == 'main' && github.repository == 'haskell/security-advisories' }}
Expand Down

0 comments on commit d262773

Please sign in to comment.