mirror of
https://github.com/krau/SaveAny-Bot.git
synced 2026-09-08 00:56:38 +08:00
docs: Update issue templates to English for consistency and clarity
This commit is contained in:
@@ -1,5 +1,5 @@
|
|||||||
name: "👾 报告 bug"
|
name: "👾 Bug Report"
|
||||||
description: "报告 bug"
|
description: "Report a bug or unexpected behavior"
|
||||||
labels:
|
labels:
|
||||||
- "bug"
|
- "bug"
|
||||||
assignees:
|
assignees:
|
||||||
@@ -7,29 +7,29 @@ assignees:
|
|||||||
body:
|
body:
|
||||||
- type: textarea
|
- type: textarea
|
||||||
attributes:
|
attributes:
|
||||||
label: "👾 问题描述"
|
label: "👾 Description"
|
||||||
description: "What happened?"
|
description: "What happened?"
|
||||||
placeholder: "When called ... happens ..."
|
placeholder: "When called ... happens ..."
|
||||||
validations:
|
validations:
|
||||||
required: true
|
required: true
|
||||||
- type: textarea
|
- type: textarea
|
||||||
attributes:
|
attributes:
|
||||||
label: "⚡️ 预期行为"
|
label: "⚡️ Expected Behavior"
|
||||||
description: "What was expected?"
|
description: "What was expected?"
|
||||||
placeholder: "It should be ..."
|
placeholder: "It should be ..."
|
||||||
- type: textarea
|
- type: textarea
|
||||||
attributes:
|
attributes:
|
||||||
label: "📄 配置文件"
|
label: "📄 Configuration File"
|
||||||
description: "Please provide your config file"
|
description: "Please provide your config file"
|
||||||
placeholder: "请自行隐去密钥信息"
|
placeholder: "Please remove sensitive information"
|
||||||
render: toml
|
render: toml
|
||||||
validations:
|
validations:
|
||||||
required: true
|
required: true
|
||||||
- type: textarea
|
- type: textarea
|
||||||
attributes:
|
attributes:
|
||||||
label: "🔍 日志"
|
label: "🔍 Logs"
|
||||||
description: "Please provide logs"
|
description: "Please provide logs"
|
||||||
placeholder: "可删除隐私信息"
|
placeholder: "Please remove sensitive information"
|
||||||
render: shell
|
render: shell
|
||||||
validations:
|
validations:
|
||||||
required: true
|
required: true
|
||||||
|
|||||||
@@ -1,8 +1,8 @@
|
|||||||
blank_issues_enabled: true
|
blank_issues_enabled: true
|
||||||
contact_links:
|
contact_links:
|
||||||
- name: 💬 不知道如何正确使用?
|
- name: 💬 Don't know how to use it correctly?
|
||||||
url: https://github.com/krau/SaveAny-Bot/discussions
|
url: https://github.com/krau/SaveAny-Bot/discussions
|
||||||
about: "前往讨论区提问"
|
about: "Go to the discussion area to ask questions"
|
||||||
- name: 📄 文档
|
- name: 📄 Documentation
|
||||||
url: https://sabot.unv.app
|
url: https://sabot.unv.app
|
||||||
about: "查看文档"
|
about: "View the documentation"
|
||||||
|
|||||||
@@ -1,5 +1,5 @@
|
|||||||
name: "⭐️ 功能请求"
|
name: "⭐️ Feature Request"
|
||||||
description: "功能请求"
|
description: "Feature request"
|
||||||
labels:
|
labels:
|
||||||
- "enhancement"
|
- "enhancement"
|
||||||
assignees:
|
assignees:
|
||||||
@@ -8,7 +8,7 @@ body:
|
|||||||
- type: markdown
|
- type: markdown
|
||||||
attributes:
|
attributes:
|
||||||
value: |
|
value: |
|
||||||
# 请详细描述你想要的功能
|
# Please describe the feature you want in detail
|
||||||
- type: textarea
|
- type: textarea
|
||||||
attributes:
|
attributes:
|
||||||
label: "⭐️ Feature description"
|
label: "⭐️ Feature description"
|
||||||
|
|||||||
@@ -92,7 +92,7 @@ jobs:
|
|||||||
echo "$digest" > /tmp/digests/digest
|
echo "$digest" > /tmp/digests/digest
|
||||||
|
|
||||||
- name: Upload digest
|
- name: Upload digest
|
||||||
uses: actions/upload-artifact@v4
|
uses: actions/upload-artifact@v6
|
||||||
with:
|
with:
|
||||||
name: digest-${{ matrix.type }}-${{ matrix.arch }}
|
name: digest-${{ matrix.type }}-${{ matrix.arch }}
|
||||||
path: /tmp/digests/digest
|
path: /tmp/digests/digest
|
||||||
@@ -116,7 +116,7 @@ jobs:
|
|||||||
password: ${{ secrets.GITHUB_TOKEN }}
|
password: ${{ secrets.GITHUB_TOKEN }}
|
||||||
|
|
||||||
- name: Download digests
|
- name: Download digests
|
||||||
uses: actions/download-artifact@v4
|
uses: actions/download-artifact@v7
|
||||||
with:
|
with:
|
||||||
path: /tmp/digests
|
path: /tmp/digests
|
||||||
pattern: digest-${{ matrix.type }}-*
|
pattern: digest-${{ matrix.type }}-*
|
||||||
|
|||||||
@@ -15,7 +15,7 @@ jobs:
|
|||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
steps:
|
steps:
|
||||||
- name: Checkout
|
- name: Checkout
|
||||||
uses: actions/checkout@v4
|
uses: actions/checkout@v6
|
||||||
with:
|
with:
|
||||||
fetch-depth: 0
|
fetch-depth: 0
|
||||||
|
|
||||||
@@ -23,7 +23,7 @@ jobs:
|
|||||||
uses: softprops/action-gh-release@v2
|
uses: softprops/action-gh-release@v2
|
||||||
|
|
||||||
- name: Setup node
|
- name: Setup node
|
||||||
uses: actions/setup-node@v4
|
uses: actions/setup-node@v6
|
||||||
with:
|
with:
|
||||||
node-version: 22
|
node-version: 22
|
||||||
|
|
||||||
|
|||||||
@@ -9,11 +9,11 @@ on:
|
|||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
deploy:
|
deploy:
|
||||||
runs-on: ubuntu-22.04
|
runs-on: ubuntu-latest
|
||||||
concurrency:
|
concurrency:
|
||||||
group: ${{ github.workflow }}-${{ github.ref }}
|
group: ${{ github.workflow }}-${{ github.ref }}
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@v4
|
- uses: actions/checkout@v6
|
||||||
with:
|
with:
|
||||||
submodules: true # Fetch Hugo themes (true OR recursive)
|
submodules: true # Fetch Hugo themes (true OR recursive)
|
||||||
fetch-depth: 0 # Fetch all history for .GitInfo and .Lastmod
|
fetch-depth: 0 # Fetch all history for .GitInfo and .Lastmod
|
||||||
|
|||||||
@@ -1,17 +0,0 @@
|
|||||||
name: Update Contributors
|
|
||||||
|
|
||||||
on:
|
|
||||||
workflow_dispatch:
|
|
||||||
|
|
||||||
jobs:
|
|
||||||
contrib-readme-job:
|
|
||||||
runs-on: ubuntu-latest
|
|
||||||
name: A job to automate contrib in readme
|
|
||||||
permissions:
|
|
||||||
contents: write
|
|
||||||
pull-requests: write
|
|
||||||
steps:
|
|
||||||
- name: Contribute List
|
|
||||||
uses: akhilmhdh/contributors-readme-action@v2.3.10
|
|
||||||
env:
|
|
||||||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
|
||||||
Reference in New Issue
Block a user