Skip to content

Commit 23bbc22

Browse files
committed
New Labeler action
add distros add bug and feature new labels fastdl regex Add sponsor label
1 parent da40c63 commit 23bbc22

File tree

3 files changed

+103
-1387
lines changed

3 files changed

+103
-1387
lines changed

.github/labeler.yml

Lines changed: 83 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,83 @@
1+
# Add/remove 'critical' label if issue contains the words 'urgent' or 'critical'
2+
# Type
3+
"type: game server request":
4+
- '(Server Request)'
5+
"type: bug":
6+
- '(bug)'
7+
"type: feature request":
8+
- '(feature)'
9+
# Commands
10+
"command: backup":
11+
- '(backup)'
12+
"command: console":
13+
- '(console|tmux)'
14+
"command: debug":
15+
- '(debug)'
16+
"command: details":
17+
- '(details)'
18+
"command: fast-dl":
19+
- '(fast-dl|fastdl)'
20+
"command: install":
21+
- '(install)'
22+
"command: mods":
23+
- '(mods)'
24+
"command: monitor":
25+
- '(monitor)'
26+
"command: post-details":
27+
- '(post-details)'
28+
"command: restart":
29+
- '(restart)'
30+
"command: send":
31+
- '(send)'
32+
"command: skeleton":
33+
- '(skeleton)'
34+
"command: start":
35+
- '(start)'
36+
"command: stop":
37+
- '(stop)'
38+
"command: update-lgsm":
39+
- '(update-lgsm)'
40+
"command: update":
41+
- '(update)'
42+
"command: validate":
43+
- '(validate)'
44+
"command: wipe":
45+
- '(wipe)'
46+
# Distros
47+
"distro: AlmaLinux":
48+
- '(Alma)'
49+
"distro: Arch Linux":
50+
- '(Arch)'
51+
"distro: CentOS":
52+
- '(CentOS)'
53+
"distro: Debian":
54+
- '(Debian)'
55+
"distro: Fedora":
56+
- '(Fedora)'
57+
"distro: openSUSE":
58+
- '(openSUSE)'
59+
"distro: Rocky Linux":
60+
- '(Rocky)'
61+
"distro: Slackware":
62+
- '(Slackware)'
63+
"distro: Ubuntu":
64+
- '(Ubuntu)'
65+
# Info
66+
"info: alerts":
67+
- '(alert)'
68+
"info: dependency":
69+
- '(dependency|deps)'
70+
"info: docker":
71+
- '(docker)'
72+
"info: docs":
73+
- '(documentation|docs)'
74+
"info: email":
75+
- '(postfix|sendmail|exim|smtp)'
76+
"info: steamcmd":
77+
- '(steamcmd)'
78+
"info: systemd":
79+
- '(systemd)'
80+
"info: tmux":
81+
- '(tmux)'
82+
"info: website":
83+
- '(website)'

.github/workflows/label-sponsors.yml

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
name: Label sponsors
2+
on:
3+
pull_request:
4+
types: [opened, edited]
5+
issues:
6+
types: [opened, edited]
7+
jobs:
8+
build:
9+
name: is-sponsor-label
10+
runs-on: ubuntu-latest
11+
steps:
12+
- uses: JasonEtco/is-sponsor-label-action@v1
13+
env:
14+
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

0 commit comments

Comments
 (0)