Skip to content

Commit 6b73179

Browse files
committed
fix: issue labeler
Delete create-release.yml a
1 parent fee4ea3 commit 6b73179

File tree

3 files changed

+67
-86
lines changed

3 files changed

+67
-86
lines changed

.github/labeler.yml

Lines changed: 58 additions & 57 deletions
Original file line numberDiff line numberDiff line change
@@ -1,98 +1,99 @@
11
# Add/remove 'critical' label if issue contains the words 'urgent' or 'critical'
2-
# Type
3-
"type: game server request":
4-
- "/(Server Request)/i"
5-
"type: bug":
6-
- "/(bug)/i"
7-
"type: feature request":
8-
- "/(feature)/i"
2+
93
# Commands
104
"command: backup":
11-
- "/(backup)/i"
5+
- "(backup)"
126
"command: console":
13-
- "/(console|tmux)/i"
7+
- "(console|tmux)"
148
"command: debug":
15-
- "/(debug)/i"
9+
- "(debug)"
1610
"command: details":
17-
- "/(details)/i"
11+
- "(details)"
1812
"command: fast-dl":
19-
- "/(fast-dl|fastdl)/i"
13+
- "(fast-dl|fastdl)"
2014
"command: install":
21-
- "/(install)/i"
15+
- "(install)"
2216
"command: mods":
23-
- "/(mods)/i"
17+
- "(mods)"
2418
"command: monitor":
25-
- "/(monitor)/i"
19+
- "(monitor)"
2620
"command: post-details":
27-
- "/(post-details)/i"
21+
- "(post-details)"
2822
"command: restart":
29-
- "/(restart)/i"
23+
- "(restart)"
3024
"command: send":
31-
- "/(send)/i"
25+
- "(send)"
3226
"command: skeleton":
33-
- "/(skeleton)/i"
27+
- "(skeleton)"
3428
"command: start":
35-
- "/(start)/i"
29+
- "(start)"
3630
"command: stop":
37-
- "/(stop)/i"
31+
- "(stop)"
3832
"command: update-lgsm":
39-
- "/(update-lgsm)/i"
33+
- "(update-lgsm)"
4034
"command: update":
41-
- "/(update)/i"
35+
- "(update)"
4236
"command: validate":
43-
- "/(validate)/i"
37+
- "(validate)"
4438
"command: wipe":
45-
- "/(wipe)/i"
39+
- "(wipe)"
4640
# Distros
4741
"distro: AlmaLinux":
48-
- "/(Alma)/i"
42+
- "(Alma)"
4943
"distro: Arch Linux":
50-
- "/(Arch)/i"
44+
- "(Arch)"
5145
"distro: CentOS":
52-
- "/(CentOS)/i"
46+
- "(CentOS)"
5347
"distro: Debian":
54-
- "/(Debian)/i"
48+
- "(Debian)"
5549
"distro: Fedora":
56-
- "/(Fedora)/i"
50+
- "(Fedora)"
5751
"distro: openSUSE":
58-
- "/(openSUSE|suse)/i"
52+
- "(openSUSE|suse)"
5953
"distro: Rocky Linux":
60-
- "/(Rocky)/i"
54+
- "(Rocky)"
6155
"distro: Slackware":
62-
- "/(Slackware)/i"
56+
- "(Slackware)"
6357
"distro: Ubuntu":
64-
- "/(Ubuntu)/i"
58+
- "(Ubuntu)"
59+
# Games
60+
"game: Ark: Survival Evolved":
61+
- "(Ark: Survival Evolved|Ark)"
62+
"game: ARMA 3":
63+
- "(ARMA 3)"
64+
"game: Assetto Corsa":
65+
- "(Assetto Corsa)"
66+
"game: Avorion":
67+
- "(Avorion)"
68+
"game: Ballistic Overkill":
69+
- "(Ballistic Overkill)"
70+
"game: Barotrauma":
71+
- "(Barotrauma)"
6572
# Info
6673
"info: alerts":
67-
- "/(alert)/i"
74+
- "(alert)"
6875
"info: dependency":
69-
- "/(dependency|deps)/i"
76+
- "(dependency|deps)"
7077
"info: docker":
71-
- "/(docker)/i"
78+
- "(docker)"
7279
"info: docs":
73-
- "/(documentation|docs)/i"
80+
- "(documentation|docs)"
7481
"info: email":
75-
- "/(postfix|sendmail|exim|smtp)/i"
82+
- "(postfix|sendmail|exim|smtp)"
7683
"info: query":
77-
- "/(gamedig|gsquery)/i"
84+
- "(gamedig|gsquery)"
7885
"info: steamcmd":
79-
- "/(steamcmd)/i"
86+
- "(steamcmd)"
8087
"info: systemd":
81-
- "/(systemd)/i"
88+
- "(systemd)"
8289
"info: tmux":
83-
- "/(tmux)/i"
90+
- "(tmux)"
8491
"info: website":
85-
- "/(website)/i"
86-
# Games
87-
"game: Ark: Survival Evolved":
88-
- "/(Ark: Survival Evolved|Ark)/i"
89-
"game: ARMA 3":
90-
- "/(ARMA 3)/i"
91-
"game: Assetto Corsa":
92-
- "/(Assetto Corsa)/i"
93-
"game: Avorion":
94-
- "/(Avorion)/i"
95-
"game: Ballistic Overkill":
96-
- "/(Ballistic Overkill)/i"
97-
"game: Barotrauma":
98-
- "/(Barotrauma)/i"
92+
- "(website)"
93+
# Type
94+
"type: game server request":
95+
- "(Server Request)"
96+
"type: bug":
97+
- "(bug)"
98+
"type: feature request":
99+
- "(feature)"

.github/workflows/create-release.yml

Lines changed: 0 additions & 23 deletions
This file was deleted.

.github/workflows/labeler.yml

Lines changed: 9 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,8 @@ name: "Issue Labeler"
22
on:
33
issues:
44
types: [opened, edited]
5+
pull_request:
6+
types: [opened, edited]
57

68
permissions:
79
contents: read
@@ -13,9 +15,10 @@ jobs:
1315
issues: write # for github/issue-labeler to create or remove labels
1416
runs-on: ubuntu-latest
1517
steps:
16-
- uses: github/issue-labeler@v2.6
17-
with:
18-
repo-token: "${{ secrets.GITHUB_TOKEN }}"
19-
configuration-path: .github/labeler.yml
20-
not-before:
21-
enable-versioned-regex: 0
18+
- uses: github/issue-labeler@v2.6
19+
with:
20+
repo-token: "${{ secrets.GITHUB_TOKEN }}"
21+
configuration-path: .github/labeler.yml
22+
not-before:
23+
enable-versioned-regex: 0
24+
include-title: 1

0 commit comments

Comments
 (0)