From 8c8922f6fe1219b77a51f541a589d3690e44af06 Mon Sep 17 00:00:00 2001 From: Lance Ball Date: Thu, 14 Nov 2024 17:28:21 -0700 Subject: [PATCH] chore(license): ignore the policy-data directory Modifies the upstream verfication task so that it ignores the `policy-data` directory, which is added for downstream builds. Signed-off-by: Lance Ball --- .github/workflows/verify.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/verify.yml b/.github/workflows/verify.yml index 31d6456a3..6d221932c 100644 --- a/.github/workflows/verify.yml +++ b/.github/workflows/verify.yml @@ -41,7 +41,7 @@ jobs: - name: Check license headers run: | set -e - addlicense -l apache -c 'The Sigstore Authors' -v * + addlicense -ignore policy-data/** -l apache -c 'The Sigstore Authors' -v * git diff --exit-code golangci: