tonglil / labeler

Superseded by https://github.com/apps/settings - Manage labels on GitHub as code
MIT License
82 stars 11 forks source link

Organizational support #11

Open tonglil opened 7 years ago

tonglil commented 7 years ago

Apply -or- add-only labels to all repos in an organization via one file.

Whether that file is flat:

org: github
labels:
  - name: bug
    color: d4c5f9
...

Or based on some regex:

org: github
repos: team-*
  labels:
    - name: bug
      color: d4c5f9
...

or

org: github/team-*
labels:
  - name: bug
    color: d4c5f9
...