Skip to content

Commit 8b8775e

Browse files
Updated license header checker to Deno License Checker (#4118)
Signed-off-by: Hitensh Kharva <kharva.hitensh11@gmail.com>
1 parent bbd3073 commit 8b8775e

File tree

2 files changed

+35
-6
lines changed

2 files changed

+35
-6
lines changed

.github/workflows/license-header-checker.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,4 +9,4 @@ jobs:
99
steps:
1010
- uses: actions/checkout@v3
1111
- name: Add License Header
12-
uses: kt3k/license_checker@v1.0.6
12+
run: npx @kt3k/license-checker

.licenserc.json

+34-5
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,35 @@
1-
{
2-
"**/*.{py,groovy,sh,js,ts}":[
3-
" Copyright OpenSearch Contributors",
4-
" SPDX-License-Identifier: Apache-2.0"
5-
]
1+
{
2+
"**/*.*": [
3+
" Copyright OpenSearch Contributors",
4+
" SPDX-License-Identifier: Apache-2.0"
5+
],
6+
"ignore": [
7+
".md",
8+
".flake8",
9+
".yml",
10+
".yaml",
11+
".bat",
12+
".json",
13+
".txt",
14+
".config",
15+
".swp",
16+
"tests/tests_test_workflow/test_integ_workflow/integ_test/data/artifacts/",
17+
"tests/tests_sign_workflow/data/signature/",
18+
"tests/tests_assemble_workflow/data/artifacts/",
19+
".png",
20+
"settings.gradle",
21+
".git",
22+
".lychee.excludes",
23+
".whitesource",
24+
".shellcheckrc",
25+
".lock",
26+
".gradle",
27+
".cert",
28+
".key",
29+
".jar",
30+
".gz",
31+
".toml",
32+
".ini",
33+
"gradle/wrapper"
34+
]
635
}

0 commit comments

Comments
 (0)