Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/datreeio/validate-license-action

Validate a license file exists and is one of the allowed licenses
https://github.com/datreeio/validate-license-action

Last synced: 18 days ago
JSON representation

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

Awesome Lists containing this project

README

        

# 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
1. Support custom license file name
1. Support ```*``` allowed license
1. Support checking the source branch and not only the master