mirror of
https://github.com/SillyTavern/SillyTavern-Launcher.git
synced 2026-05-01 11:41:24 +00:00
issue labeler
+added automatic label system
This commit is contained in:
9
.github/ISSUE_TEMPLATE/bug-report.yml
vendored
9
.github/ISSUE_TEMPLATE/bug-report.yml
vendored
@@ -9,10 +9,11 @@ body:
|
|||||||
label: Environment
|
label: Environment
|
||||||
description: What OS are you running the file from?
|
description: What OS are you running the file from?
|
||||||
options:
|
options:
|
||||||
- Windows
|
- 🪟 Windows
|
||||||
- Linux
|
- 🐧 Linux
|
||||||
- Android (Termux)
|
- 📱 Termux
|
||||||
- Mac
|
- 🐋 Docker
|
||||||
|
- 🍎 Mac
|
||||||
validations:
|
validations:
|
||||||
required: true
|
required: true
|
||||||
|
|
||||||
|
|||||||
18
.github/labeler.yml
vendored
Normal file
18
.github/labeler.yml
vendored
Normal file
@@ -0,0 +1,18 @@
|
|||||||
|
# Add/remove 'critical' label if issue contains the words 'urgent' or 'critical'
|
||||||
|
#critical:
|
||||||
|
# - '(critical|urgent)'
|
||||||
|
|
||||||
|
🪟 Windows:
|
||||||
|
- '(🪟 Windows)'
|
||||||
|
|
||||||
|
🍎 Mac:
|
||||||
|
- '(🍎 Mac)'
|
||||||
|
|
||||||
|
🐋 Docker:
|
||||||
|
- '(🐋 Docker)'
|
||||||
|
|
||||||
|
📱 Termux:
|
||||||
|
- '(📱 Termux)'
|
||||||
|
|
||||||
|
🐧 Linux:
|
||||||
|
- '(🐧 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 }}
|
||||||
@@ -600,7 +600,7 @@ echo %blue_bg%[%time%]%reset% %blue_fg_strong%[INFO]%reset% Installing vs_BuildT
|
|||||||
curl -L -o "%temp%\vs_buildtools.exe" "https://aka.ms/vs/17/release/vs_BuildTools.exe"
|
curl -L -o "%temp%\vs_buildtools.exe" "https://aka.ms/vs/17/release/vs_BuildTools.exe"
|
||||||
|
|
||||||
if %errorlevel% neq 0 (
|
if %errorlevel% neq 0 (
|
||||||
echo %red_bg%[%time%]%reset% %red_fg_strong%[ERROR] Download failed. Please restart the installer%reset%
|
echo %red_bg%[%time%]%reset% %red_fg_strong%[ERROR] Failed to download vs_BuildTools.exe Please restart the installer%reset%
|
||||||
pause
|
pause
|
||||||
goto :installer
|
goto :installer
|
||||||
) else (
|
) else (
|
||||||
|
|||||||
Reference in New Issue
Block a user