Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat: ignore any directory named vendor #278

Merged
merged 2 commits into from
Jun 5, 2024
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
6 changes: 4 additions & 2 deletions .github/workflows/reusable-goimports.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,9 @@ jobs:
id: goimports
run: |
go install golang.org/x/tools/cmd/goimports@latest
find . -type f -name '*.go' -not -path './vendor/*' | xargs -I{} goimports -w {}
BASE_CMD="find . -type f -name '*.go'"
VENDOR_PATH_ARGS=$(for i in $(find . -type d -name vendor -exec test -e '{}'/modules.txt \; -print); do echo -n "-not -path \"$i/*\" "; done)
eval $BASE_CMD $VENDOR_PATH_ARGS | xargs -I{} goimports -w {}
- name: determine changes
id: determine-changes
run: |
Expand All @@ -30,5 +32,5 @@ jobs:
if: ${{ steps.determine-changes.outputs.changes == 'true' }}
run: |
echo "changes detected" >/dev/stderr
echo "Please run 'find . -type f -name '*.go' -not -path './vendor/*' | xargs -I{} goimports -w {}' and commit again."
echo "Please run 'eval "find . -type f -name '*.go'" $(for i in $(find . -type d -name vendor -exec test -e '{}'/modules.txt \; -print); do echo -n "-not -path \"$i/*\" "; done) | xargs -I{} goimports -w {}' and commit again."
exit 1
Loading