Browse Source

actions: fixes for labeler and sponsored

labeler


test


reg


add query


Added games


add pr-labeler
pull/3605/head
Daniel Gibbs 4 years ago
parent
commit
081826b240
  1. 93
      .github/labeler.yml
  2. 3
      .github/pr-labeler.yml
  3. 4
      .github/workflows/label-sponsors.yml
  4. 4
      .github/workflows/labeler.yml
  5. 14
      .github/workflows/pr-labeler.yml

93
.github/labeler.yml

@ -1,83 +1,98 @@
# Add/remove 'critical' label if issue contains the words 'urgent' or 'critical' # Add/remove 'critical' label if issue contains the words 'urgent' or 'critical'
# Type # Type
"type: game server request": "type: game server request":
- '(Server Request)' - '/(Server Request)/i'
"type: bug": "type: bug":
- '(bug)' - '/(bug)/i'
"type: feature request": "type: feature request":
- '(feature)' - '/(feature)/i'
# Commands # Commands
"command: backup": "command: backup":
- '(backup)' - '/(backup)/i'
"command: console": "command: console":
- '(console|tmux)' - '/(console|tmux)/i'
"command: debug": "command: debug":
- '(debug)' - '/(debug)/i'
"command: details": "command: details":
- '(details)' - '/(details)/i'
"command: fast-dl": "command: fast-dl":
- '(fast-dl|fastdl)' - '/(fast-dl|fastdl)/i'
"command: install": "command: install":
- '(install)' - '/(install)/i'
"command: mods": "command: mods":
- '(mods)' - '/(mods)/i'
"command: monitor": "command: monitor":
- '(monitor)' - '/(monitor)/i'
"command: post-details": "command: post-details":
- '(post-details)' - '/(post-details)/i'
"command: restart": "command: restart":
- '(restart)' - '/(restart)/i'
"command: send": "command: send":
- '(send)' - '/(send)/i'
"command: skeleton": "command: skeleton":
- '(skeleton)' - '/(skeleton)/i'
"command: start": "command: start":
- '(start)' - '/(start)/i'
"command: stop": "command: stop":
- '(stop)' - '/(stop)/i'
"command: update-lgsm": "command: update-lgsm":
- '(update-lgsm)' - '/(update-lgsm)/i'
"command: update": "command: update":
- '(update)' - '/(update)/i'
"command: validate": "command: validate":
- '(validate)' - '/(validate)/i'
"command: wipe": "command: wipe":
- '(wipe)' - '/(wipe)/i'
# Distros # Distros
"distro: AlmaLinux": "distro: AlmaLinux":
- '(Alma)' - '/(Alma)/i'
"distro: Arch Linux": "distro: Arch Linux":
- '(Arch)' - '/(Arch)/i'
"distro: CentOS": "distro: CentOS":
- '(CentOS)' - '/(CentOS)/i'
"distro: Debian": "distro: Debian":
- '(Debian)' - '/(Debian)/i'
"distro: Fedora": "distro: Fedora":
- '(Fedora)' - '/(Fedora)/i'
"distro: openSUSE": "distro: openSUSE":
- '(openSUSE)' - '/(openSUSE|suse)/i'
"distro: Rocky Linux": "distro: Rocky Linux":
- '(Rocky)' - '/(Rocky)/i'
"distro: Slackware": "distro: Slackware":
- '(Slackware)' - '/(Slackware)/i'
"distro: Ubuntu": "distro: Ubuntu":
- '(Ubuntu)' - '/(Ubuntu)/i'
# Info # Info
"info: alerts": "info: alerts":
- '(alert)' - '/(alert)/i'
"info: dependency": "info: dependency":
- '(dependency|deps)' - '/(dependency|deps)/i'
"info: docker": "info: docker":
- '(docker)' - '/(docker)/i'
"info: docs": "info: docs":
- '(documentation|docs)' - '/(documentation|docs)/i'
"info: email": "info: email":
- '(postfix|sendmail|exim|smtp)' - '/(postfix|sendmail|exim|smtp)/i'
"info: query":
- '/(gamedig|gsquery)/i'
"info: steamcmd": "info: steamcmd":
- '(steamcmd)' - '/(steamcmd)/i'
"info: systemd": "info: systemd":
- '(systemd)' - '/(systemd)/i'
"info: tmux": "info: tmux":
- '(tmux)' - '/(tmux)/i'
"info: website": "info: website":
- '(website)' - '/(website)/i'
# Games
"game: Ark: Survival Evolved":
- '/(Ark: Survival Evolved|Ark)/i'
"game: ARMA 3":
- '/(ARMA 3)/i'
"game: Assetto Corsa":
- '/(Assetto Corsa)/i'
"game: Avorion":
- '/(Avorion)/i'
"game: Ballistic Overkill":
- '/(Ballistic Overkill)/i'
"game: Barotrauma":
- '/(Barotrauma)/i'

3
.github/pr-labeler.yml

@ -0,0 +1,3 @@
feature: ['feature/*', 'feat/*']
hotfix: hotfix/*
release: release/*

4
.github/workflows/label-sponsors.yml

@ -1,9 +1,9 @@
name: Label sponsors name: Label sponsors
on: on:
pull_request: pull_request:
types: [opened, edited] types: [opened]
issues: issues:
types: [opened, edited] types: [opened]
jobs: jobs:
build: build:
name: is-sponsor-label name: is-sponsor-label

4
.github/workflows/labeler.yml

@ -7,7 +7,9 @@ jobs:
triage: triage:
runs-on: ubuntu-latest runs-on: ubuntu-latest
steps: steps:
- uses: github/issue-labeler@v2.0 - uses: github/issue-labeler@v2.4
with: with:
repo-token: "${{ secrets.GITHUB_TOKEN }}" repo-token: "${{ secrets.GITHUB_TOKEN }}"
configuration-path: .github/labeler.yml configuration-path: .github/labeler.yml
not-before:
enable-versioned-regex: 0

14
.github/workflows/pr-labeler.yml

@ -0,0 +1,14 @@
name: PR Labeler
on:
pull_request:
types: [opened, edited, closed]
jobs:
pr-labeler:
runs-on: ubuntu-latest
steps:
- uses: TimonVS/pr-labeler-action@v3
with:
configuration-path: .github/pr-labeler.yml # optional, .github/pr-labeler.yml is the default value
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
Loading…
Cancel
Save