Update index.html #31
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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" |