File tree Expand file tree Collapse file tree 2 files changed +4
-1
lines changed Expand file tree Collapse file tree 2 files changed +4
-1
lines changed Original file line number Diff line number Diff line change 7070 # only run this on PRs
7171 if : github.event_name == 'pull_request'
7272 runs-on : ubuntu-24.04
73+ env :
74+ GIT_CHECK_EXCLUDE : " ./vendor"
7375 steps :
7476 - uses : actions/checkout@v5
7577 with :
8385 # See comment on lint task
8486 cache-dependency-path : " **/go.sum"
8587 - name : run git-validation
88+
8689 # We validate all commits as we only fetched the number of commits in the PR above,
8790 # by default git-validation has some special github action handling but that seems broken.
8891 run : make .install.gitvalidation && git-validation -no-github
Original file line number Diff line number Diff line change @@ -41,7 +41,7 @@ install.tools: .install.gitvalidation .install.golangci-lint .install.md2man
4141
4242.PHONY : git-validation
4343git-validation : .install.gitvalidation
44- git-validation -q -run DCO,short-subject,dangling-whitespace -range " $( EPOCH_TEST_COMMIT) ..HEAD"
44+ GIT_CHECK_EXCLUDE= " ./vendor " git-validation -q -run DCO,short-subject,dangling-whitespace -range " $( EPOCH_TEST_COMMIT) ..HEAD"
4545
4646.PHONY : lint
4747lint : .install.golangci-lint
You can’t perform that action at this time.
0 commit comments