mirror of
https://github.com/SillyTavern/SillyTavern.git
synced 2025-04-05 14:41:07 +02:00
issue labeler
+added automatic label system for a more easy filter
This commit is contained in:
parent
c91ffb04f3
commit
c39b0ed3d9
.github
10
.github/ISSUE_TEMPLATE/bug-report.yml
vendored
10
.github/ISSUE_TEMPLATE/bug-report.yml
vendored
@ -9,11 +9,11 @@ body:
|
|||||||
label: Environment
|
label: Environment
|
||||||
description: Where are you running SillyTavern?
|
description: Where are you running SillyTavern?
|
||||||
options:
|
options:
|
||||||
- Self-Hosted (Bare Metal)
|
- 🪟 Windows
|
||||||
- Self-Hosted (Docker)
|
- 🐧 Linux
|
||||||
- Android (Termux)
|
- 📱 Termux
|
||||||
- Cloud Service (Static)
|
- 🐋 Docker
|
||||||
- Other (Specify below)
|
- 🍎 Mac
|
||||||
validations:
|
validations:
|
||||||
required: true
|
required: true
|
||||||
|
|
||||||
|
6
.github/labeler.yml
vendored
Normal file
6
.github/labeler.yml
vendored
Normal file
@ -0,0 +1,6 @@
|
|||||||
|
# Add/remove 'critical' label if issue contains the words 'urgent' or 'critical'
|
||||||
|
#critical:
|
||||||
|
# - '(critical|urgent)'
|
||||||
|
|
||||||
|
Environment:
|
||||||
|
- '(🪟 Windows|🍎 Mac|🐋 Docker|📱 Termux|🐧 Linux)'
|
19
.github/workflows/labeler.yml
vendored
Normal file
19
.github/workflows/labeler.yml
vendored
Normal file
@ -0,0 +1,19 @@
|
|||||||
|
name: "Issue Labeler"
|
||||||
|
on:
|
||||||
|
issues:
|
||||||
|
types: [opened, edited]
|
||||||
|
|
||||||
|
permissions:
|
||||||
|
issues: write
|
||||||
|
contents: read
|
||||||
|
|
||||||
|
jobs:
|
||||||
|
triage:
|
||||||
|
runs-on: ubuntu-latest
|
||||||
|
steps:
|
||||||
|
- uses: github/issue-labeler@v3.4
|
||||||
|
with:
|
||||||
|
configuration-path: .github/labeler.yml
|
||||||
|
# not-before: 2020-01-15T02:54:32Z # optional and will result in any issues prior to this timestamp to be ignored.
|
||||||
|
enable-versioned-regex: 0
|
||||||
|
repo-token: ${{ github.token }}
|
Loading…
x
Reference in New Issue
Block a user