-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathaction.yml
More file actions
25 lines (24 loc) · 810 Bytes
/
action.yml
File metadata and controls
25 lines (24 loc) · 810 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
# This Source Code Form is subject to the terms of the Mozilla Public
# License, v. 2.0. If a copy of the MPL was not distributed with this
# file, You can obtain one at http://mozilla.org/MPL/2.0/.
#
# Copyright (c) 2011-2020 ETH Zurich.
name: 'check-license-header'
description: 'GitHub action to check whether all files have a specified copyright license header'
inputs:
path:
description: 'Path to working directory'
required: true
config:
description: 'Path to JSON config file'
required: true
strict:
description: 'Specifies whether files not covered by the configuration should be treated as errors'
required: false
default: false
runs:
using: 'node20'
main: 'dist/index.js'
branding:
icon: 'check'
color: 'gray-dark'