Skip to content

Validate a license file exists and is one of the allowed licenses

License

Notifications You must be signed in to change notification settings

datreeio/validate-license-action

Use this GitHub action with your project
Add this Action to an existing workflow or create a new one
View on Marketplace

Repository files navigation

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:

  1. Support getting license from file
  2. Support custom license file name
  3. Support * allowed license
  4. Support checking the source branch and not only the master