-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Signed-off-by: CrazyMax <crazy-max@users.noreply.github.com>
- Loading branch information
CrazyMax
committed
Aug 19, 2020
1 parent
6a7c1dc
commit 52d3d47
Showing
2 changed files
with
100 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,77 @@ | ||
| ## more info https://github.com/crazy-max/ghaction-github-labeler | ||
| - # automerge | ||
| name: ":bell: automerge" | ||
| color: "8f4fbc" | ||
| description: "" | ||
| - # bot | ||
| name: ":robot: bot" | ||
| color: "69cde9" | ||
| description: "" | ||
| - # bug | ||
| name: ":bug: bug" | ||
| color: "b60205" | ||
| description: "" | ||
| - # dependencies | ||
| name: ":game_die: dependencies" | ||
| color: "0366d6" | ||
| description: "" | ||
| - # documentation | ||
| name: ":memo: documentation" | ||
| color: "c5def5" | ||
| description: "" | ||
| - # duplicate | ||
| name: ":busts_in_silhouette: duplicate" | ||
| color: "cccccc" | ||
| description: "" | ||
| - # enhancement | ||
| name: ":sparkles: enhancement" | ||
| color: "0054ca" | ||
| description: "" | ||
| - # feature request | ||
| name: ":bulb: feature request" | ||
| color: "0e8a16" | ||
| description: "" | ||
| - # feedback | ||
| name: ":mega: feedback" | ||
| color: "03a9f4" | ||
| description: "" | ||
| - # future maybe | ||
| name: ":rocket: future maybe" | ||
| color: "fef2c0" | ||
| description: "" | ||
| - # good first issue | ||
| name: ":hatching_chick: good first issue" | ||
| color: "7057ff" | ||
| description: "" | ||
| - # help wanted | ||
| name: ":pray: help wanted" | ||
| color: "4caf50" | ||
| description: "" | ||
| - # hold | ||
| name: ":hand: hold" | ||
| color: "24292f" | ||
| description: "" | ||
| - # invalid | ||
| name: ":no_entry_sign: invalid" | ||
| color: "e6e6e6" | ||
| description: "" | ||
| - # maybe bug | ||
| name: ":interrobang: maybe bug" | ||
| color: "ff5722" | ||
| description: "" | ||
| - # needs more info | ||
| name: ":thinking: needs more info" | ||
| color: "795548" | ||
| description: "" | ||
| - # question | ||
| name: ":question: question" | ||
| color: "3f51b5" | ||
| description: "" | ||
| - # upstream | ||
| name: ":eyes: upstream" | ||
| color: "fbca04" | ||
| description: "" | ||
| - # wontfix | ||
| name: ":coffin: wontfix" | ||
| color: "ffffff" | ||
| description: "" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,23 @@ | ||
| name: labels | ||
|
|
||
| on: | ||
| push: | ||
| branches: | ||
| - 'master' | ||
| paths: | ||
| - '.github/labels.yml' | ||
| - '.github/workflows/labels.yml' | ||
|
|
||
| jobs: | ||
| labeler: | ||
| runs-on: ubuntu-latest | ||
| steps: | ||
| - | ||
| name: Checkout | ||
| uses: actions/checkout@v2.3.1 | ||
| - | ||
| name: Run Labeler | ||
| if: success() | ||
| uses: crazy-max/ghaction-github-labeler@v2.1.0 | ||
| env: | ||
| GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} |