From f159066c4f46796f9eb883827bf1a3b883df8348 Mon Sep 17 00:00:00 2001 From: Seth Hoenig Date: Mon, 2 Mar 2026 09:40:46 -0600 Subject: [PATCH] ci: remove copywrite checks --- .github/workflows/ci.yaml | 10 ---------- .github/workflows/scripts/copywrite.hcl | 15 --------------- Justfile | 7 ------- 3 files changed, 32 deletions(-) delete mode 100644 .github/workflows/scripts/copywrite.hcl diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index a4d5b04..946eadd 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -8,16 +8,6 @@ on: branches: - 'main' jobs: - run-copywrite: - timeout-minutes: 5 - runs-on: ubuntu-24.04 - steps: - - uses: actions/checkout@v6 - - uses: hashicorp/setup-copywrite@v1.1.3 - - name: verify copyright - run: | - copywrite --config .github/workflows/scripts/copywrite.hcl \ - headers --spdx "BSD-3-Clause" --plan run-tests: timeout-minutes: 5 runs-on: ubuntu-24.04 diff --git a/.github/workflows/scripts/copywrite.hcl b/.github/workflows/scripts/copywrite.hcl deleted file mode 100644 index c9215e0..0000000 --- a/.github/workflows/scripts/copywrite.hcl +++ /dev/null @@ -1,15 +0,0 @@ -schema_version = 1 - -project { - license = "BSD-3-Clause" - copyright_holder = "CattleCloud LLC" - copyright_year = 2025 - header_ignore = [ - "**/*.sh", - ".src/**", - ".bin/**", - ".github/**", - ".golangci.yaml", - ] -} - diff --git a/Justfile b/Justfile index 9b00c94..0ae8c6a 100644 --- a/Justfile +++ b/Justfile @@ -18,13 +18,6 @@ tidy: test: go test -v -race -count=1 ./... -# ensure copywrite headers present on source files -[group('lint')] -copywrite: - copywrite \ - --config {{scripts}}/copywrite.hcl headers \ - --spdx "BSD-3-Clause" - # apply go vet command on source tree [group('lint')] vet: