From 4587c9b1b1e0d153977f296570ee1069f4cc5d8c Mon Sep 17 00:00:00 2001 From: pooneyy <85266337+pooneyy@users.noreply.github.com> Date: Mon, 6 Oct 2025 23:35:10 +0800 Subject: [PATCH] =?UTF-8?q?=F0=9F=94=A7=20chore(github):=20standardize=20i?= =?UTF-8?q?ssue=20template=20configuration=20and=20workflow?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - fix case sensitivity in issue template assignees field (Assignees → assignees) - add silent flag to GitHub API calls in renovate workflow to reduce output noise --- .github/ISSUE_TEMPLATE/1-Update-Needed.yml | 2 +- .github/ISSUE_TEMPLATE/2-Add-New-App.yml | 2 +- .github/ISSUE_TEMPLATE/3-Feedback.yml | 2 +- .github/workflows/renovate-app-version.yml | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/ISSUE_TEMPLATE/1-Update-Needed.yml b/.github/ISSUE_TEMPLATE/1-Update-Needed.yml index 96f9f2b77..897b7a70c 100644 --- a/.github/ISSUE_TEMPLATE/1-Update-Needed.yml +++ b/.github/ISSUE_TEMPLATE/1-Update-Needed.yml @@ -3,7 +3,7 @@ description: "当前应用商店中的应用有新版本,才可填此表单。 title: "[需要更新应用] 哪个应用需要更新? / Which app needs an update?" labels: - Update -Assignees: +assignees: - pooneyy body: - type: markdown diff --git a/.github/ISSUE_TEMPLATE/2-Add-New-App.yml b/.github/ISSUE_TEMPLATE/2-Add-New-App.yml index c78793985..7e6391b45 100644 --- a/.github/ISSUE_TEMPLATE/2-Add-New-App.yml +++ b/.github/ISSUE_TEMPLATE/2-Add-New-App.yml @@ -3,7 +3,7 @@ description: "有当前应用商店未收录的应用,请提交此表单。 / title: "[需要增加应用] 需要增加哪个应用? / Which app needs to be added?" labels: - Add -Assignees: +assignees: - pooneyy body: - type: markdown diff --git a/.github/ISSUE_TEMPLATE/3-Feedback.yml b/.github/ISSUE_TEMPLATE/3-Feedback.yml index 2d30edcb9..826e4b0e2 100644 --- a/.github/ISSUE_TEMPLATE/3-Feedback.yml +++ b/.github/ISSUE_TEMPLATE/3-Feedback.yml @@ -3,7 +3,7 @@ description: "提交使用中的相关问题 / Submit issues you encounter while title: "[反馈问题] 哪个应用出现了问题? / Which app has any problem?" labels: - Feedback -Assignees: +assignees: - pooneyy body: - type: markdown diff --git a/.github/workflows/renovate-app-version.yml b/.github/workflows/renovate-app-version.yml index a50807104..bbb507cb9 100644 --- a/.github/workflows/renovate-app-version.yml +++ b/.github/workflows/renovate-app-version.yml @@ -100,7 +100,7 @@ jobs: new_version=$(cat "apps/$app_name/${old_version}.version") rm -f "apps/$app_name/${old_version}.version" git add "apps/$app_name/*" && git commit -m "🔧 chore($app_name): update app version from $old_version to $new_version" --no-verify && git push || true - gh api --method POST -H "Accept: application/vnd.github+json" \ + gh api --silent --method POST -H "Accept: application/vnd.github+json" \ -H "X-GitHub-Api-Version: 2022-11-28" \ /repos/${{ github.repository }}/statuses/$(git show -s --format=%H) \ -f 'state=success' \