Skip to content

Commit 35ce85b

Browse files
committed
Refactor copyright check to use Makefile
Consolidate the copyright check step by replacing the standalone `check-copyright` command with `make check-copyright` in the GitHub Actions workflow. This change simplifies the workflow and aligns it with the existing Makefile-based approach.
1 parent 66f3c46 commit 35ce85b

File tree

1 file changed

+2
-6
lines changed

1 file changed

+2
-6
lines changed

.github/workflows/golangci-lint.yml

Lines changed: 2 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -27,12 +27,8 @@ jobs:
2727
- name: 🛩️ golangci-lint
2828
run: make lint
2929

30-
check-copyright:
31-
name: Check Copyright
32-
runs-on: ubuntu-latest
33-
steps:
34-
- name: ©️ check copyright
35-
run: check-copyright
30+
- name: ©️ check-copyright
31+
run: make check-copyright
3632

3733
crd-docs-check:
3834
name: Check CRD Docs

0 commit comments

Comments
 (0)