Skip to content

Commit 05ad9a2

Browse files
committed
Add labels workflow
1 parent e9dc12e commit 05ad9a2

4 files changed

Lines changed: 102 additions & 1 deletion

File tree

.dockerignore

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
/.dev
2+
/coverage
3+
/dist
4+
/lib
5+
/node_modules

.github/labels.yml

Lines changed: 77 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,77 @@
1+
## more info https://github.com/crazy-max/ghaction-github-labeler
2+
- # automerge
3+
name: ":bell: automerge"
4+
color: "8f4fbc"
5+
description: ""
6+
- # bot
7+
name: ":robot: bot"
8+
color: "69cde9"
9+
description: ""
10+
- # bug
11+
name: ":bug: bug"
12+
color: "b60205"
13+
description: ""
14+
- # dependencies
15+
name: ":game_die: dependencies"
16+
color: "0366d6"
17+
description: ""
18+
- # documentation
19+
name: ":memo: documentation"
20+
color: "c5def5"
21+
description: ""
22+
- # duplicate
23+
name: ":busts_in_silhouette: duplicate"
24+
color: "cccccc"
25+
description: ""
26+
- # enhancement
27+
name: ":sparkles: enhancement"
28+
color: "0054ca"
29+
description: ""
30+
- # feature request
31+
name: ":bulb: feature request"
32+
color: "0e8a16"
33+
description: ""
34+
- # feedback
35+
name: ":mega: feedback"
36+
color: "03a9f4"
37+
description: ""
38+
- # future maybe
39+
name: ":rocket: future maybe"
40+
color: "fef2c0"
41+
description: ""
42+
- # good first issue
43+
name: ":hatching_chick: good first issue"
44+
color: "7057ff"
45+
description: ""
46+
- # help wanted
47+
name: ":pray: help wanted"
48+
color: "4caf50"
49+
description: ""
50+
- # hold
51+
name: ":hand: hold"
52+
color: "24292f"
53+
description: ""
54+
- # invalid
55+
name: ":no_entry_sign: invalid"
56+
color: "e6e6e6"
57+
description: ""
58+
- # maybe bug
59+
name: ":interrobang: maybe bug"
60+
color: "ff5722"
61+
description: ""
62+
- # needs more info
63+
name: ":thinking: needs more info"
64+
color: "795548"
65+
description: ""
66+
- # question
67+
name: ":question: question"
68+
color: "3f51b5"
69+
description: ""
70+
- # upstream
71+
name: ":eyes: upstream"
72+
color: "fbca04"
73+
description: ""
74+
- # wontfix
75+
name: ":coffin: wontfix"
76+
color: "ffffff"
77+
description: ""

.github/workflows/labels.yml

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
name: labels
2+
3+
on:
4+
push:
5+
branches:
6+
- 'master'
7+
paths:
8+
- '.github/labels.yml'
9+
- '.github/workflows/labels.yml'
10+
11+
jobs:
12+
labeler:
13+
runs-on: ubuntu-latest
14+
steps:
15+
-
16+
name: Checkout
17+
uses: actions/checkout@v2
18+
-
19+
name: Run Labeler
20+
uses: crazy-max/ghaction-github-labeler@v3

README.md

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
[![GitHub release](https://img.shields.io/github/release/crazy-max/ghaction-github-runtime.svg?style=flat-square)](https://github.com/crazy-max/ghaction-github-runtime/releases/latest)
22
[![GitHub marketplace](https://img.shields.io/badge/marketplace-github--runtime-blue?logo=github&style=flat-square)](https://github.com/marketplace/actions/github-runtime)
33
[![CI workflow](https://img.shields.io/github/workflow/status/crazy-max/ghaction-dockerhub-mirror/ci?label=ci&logo=github&style=flat-square)](https://github.com/crazy-max/ghaction-dockerhub-mirror/actions?workflow=test)
4-
[![Codecov](https://img.shields.io/codecov/c/github/crazy-max/ghaction-github-runtime?logo=codecov&style=flat-square)](https://codecov.io/gh/crazy-max/ghaction-github-runtime)
54
[![Become a sponsor](https://img.shields.io/badge/sponsor-crazy--max-181717.svg?logo=github&style=flat-square)](https://github.com/sponsors/crazy-max)
65
[![Paypal Donate](https://img.shields.io/badge/donate-paypal-00457c.svg?logo=paypal&style=flat-square)](https://www.paypal.me/crazyws)
76

0 commit comments

Comments
 (0)