Skip to content

Commit 800b689

Browse files
committed
Add inputs.go-licenses-ignore
Fix issue 22 Signed-off-by: Akihiro Suda <[email protected]>
1 parent 800740a commit 800b689

File tree

1 file changed

+12
-2
lines changed

1 file changed

+12
-2
lines changed

action.yml

+12-2
Original file line numberDiff line numberDiff line change
@@ -47,6 +47,9 @@ inputs:
4747
repo-access-token:
4848
required: false
4949
description: token needed to access repository commits for private repos
50+
go-licenses-ignore:
51+
required: false
52+
description: list of go modules to bypass the go-licenses checks. Do not set this, except when go-licenses hits a false positive.
5053
runs:
5154
using: composite
5255
steps:
@@ -95,8 +98,15 @@ runs:
9598
- name: Check licenses
9699
shell: bash
97100
working-directory: ${{ inputs.working-directory }}
98-
run: go-licenses check --include_tests ./... --allowed_licenses=Apache-2.0,BSD-2-Clause,BSD-2-Clause-FreeBSD,BSD-3-Clause,MIT,ISC,Python-2.0,PostgreSQL,X11,Zlib
99-
101+
env:
102+
GO_LICENSES_IGNORE: ${{ inputs.go-licenses-ignore }}
103+
run: |
104+
set -eux
105+
flags=
106+
for f in ${GO_LICENSES_IGNORE}; do
107+
flags="${flags} --ignore ${f}"
108+
done
109+
go-licenses check --include_tests ./... --allowed_licenses=Apache-2.0,BSD-2-Clause,BSD-2-Clause-FreeBSD,BSD-3-Clause,MIT,ISC,Python-2.0,PostgreSQL,X11,Zlib ${flags}
100110
101111
- name: Validate file headers
102112
shell: bash

0 commit comments

Comments
 (0)