A GitHub action to add labels to Pull Request based on matched file patterns
To configure the action simply add the following lines to your .github/main.workflow workflow file:
workflow "auto-label" {
on = "pull_request"
resolves = ["Auto label"]
}
action "Auto label" {
uses = "banyan/auto-label@master"
secrets = ["GITHUB_TOKEN"]
}
And configure by creating .github/auto-label.json file.
The format is label: rule:
{ [key: string]: string | string[] }Pattern matching is following .gitignore spec using by node-ignore.
{
"rules": {
"frontend": ["*.js", "*.css", "*.html"],
"backend": ["app/", "*.rb"],
"ci": ".circleci",
}
}- Remove label in the PR if the file has been removed.
- If there's no adding / removing labels, it will only consumes 1 point of rate limit score.
- Handle pagination of label (currently only handles 100)
MIT