/auto-label

A GitHub action to add labels to Pull Request based on matched file patterns

Primary LanguageTypeScript

auto-label

A GitHub action to add labels to Pull Request based on matched file patterns

Installation

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",
  }
}

Features

TODO

  • Handle pagination of label (currently only handles 100)

Local setup

If you have Docker and make installed just run make build and make develop.

License

MIT