validate-license-action
validate-license-action copied to clipboard
Validate a license file exists and is one of the allowed licenses
validate-license-action
Validate a license file is one of the allowed licenses
Example Usage:
Use on a pull request event to make sure the repo has a valid license.
workflow "License validation flow" {
on = "pull_request"
resolves = ["validate license"]
}
action "validate license" {
uses = "datreeio/validate-license-action@master"
args = ["MIT,ISC"]
}
Future work to be done:
- Support getting license from file
- Support custom license file name
- Support
*allowed license - Support checking the source branch and not only the master