Skip to content

Commit

Permalink
WORKFLOWS: Changed to Regex Issue Labeler
Browse files Browse the repository at this point in the history
  • Loading branch information
Xelbayria committed Nov 25, 2024
1 parent 33e1394 commit 8535fdf
Show file tree
Hide file tree
Showing 4 changed files with 41 additions and 42 deletions.
23 changes: 23 additions & 0 deletions .github/issue_labels.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
1.21.1-NEOFORGE:
- '(1.21.1 - NEOFORGE|- \[X\] 1.21.1 \| NEOFORGE)'

1.21.1-FABRIC:
- '(1.21.1 - FABRIC|- \[X\] 1.21.1 \| FABRIC)'

1.20.1-FORGE:
- '(1.20.1 - FORGE|- \[X\] 1.20.1 \| FORGE)'

1.20.1-FABRIC:
- '(1.20.1 - FABRIC|- \[X\] 1.20.1 \| FABRIC)'

1.19.2-FORGE:
- '(1.19.2 - FORGE|- \[X\] 1.19.2 \| FORGE)'

1.19.2-FABRIC:
- '(1.19.2 - FABRIC|- \[X\] 1.19.2 \| FABRIC)'

1.18.2:
- '1.18.2'

server:
- '(server|Server)'
21 changes: 0 additions & 21 deletions .github/workflows/auto-label.json5

This file was deleted.

21 changes: 0 additions & 21 deletions .github/workflows/auto-label.yml

This file was deleted.

18 changes: 18 additions & 0 deletions .github/workflows/issue_labeler.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
name: "Issue Labeler"
on:
issues:
types: [opened, edited]

permissions:
issues: write
contents: read

jobs:
triage:
runs-on: ubuntu-latest
steps:
- uses: github/[email protected] # RegEx Issue Labeler
with:
repo-token: ${{ github.token }}
configuration-path: .github/issue_labels.yml
enable-versioned-regex: 0

0 comments on commit 8535fdf

Please sign in to comment.