forked from VinnyBabuManjaly/copyright-action
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathaction.yml
More file actions
27 lines (24 loc) · 749 Bytes
/
action.yml
File metadata and controls
27 lines (24 loc) · 749 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
26
27
name: "Copyright Action"
description: "Inserts copyright notice to configured files in repository and creates a pull request"
author: "Vinny Babu Manjaly"
branding:
icon: "edit"
color: "gray-dark"
inputs:
# Required
CopyrightString:
description: String to be added as Copyright notice(multiline copyrights are possible)
requried: true
FileType:
description: Type of files(extension) for which copyright notice has to be added in the given file path
requried: true
# Optional
Path:
description: Path in which copyright notice has to be added to files
requried: false
IgnorePath:
description: Path ignored without adding copyright notice
requried: false
runs:
using: "docker"
image: "Dockerfile"