1
0
mirror of https://github.com/pooneyy/1Panel-Appstore.git synced 2026-03-17 22:21:03 +08:00

🔧 chore(github): standardize issue template configuration and workflow

- fix case sensitivity in issue template assignees field (Assignees → assignees)
- add silent flag to GitHub API calls in renovate workflow to reduce output noise
This commit is contained in:
pooneyy 2025-10-06 23:35:10 +08:00
parent 60513cb920
commit 4587c9b1b1
No known key found for this signature in database
4 changed files with 4 additions and 4 deletions

View File

@ -3,7 +3,7 @@ description: "当前应用商店中的应用有新版本,才可填此表单。
title: "[需要更新应用] 哪个应用需要更新? / Which app needs an update?" title: "[需要更新应用] 哪个应用需要更新? / Which app needs an update?"
labels: labels:
- Update - Update
Assignees: assignees:
- pooneyy - pooneyy
body: body:
- type: markdown - type: markdown

View File

@ -3,7 +3,7 @@ description: "有当前应用商店未收录的应用,请提交此表单。 /
title: "[需要增加应用] 需要增加哪个应用? / Which app needs to be added?" title: "[需要增加应用] 需要增加哪个应用? / Which app needs to be added?"
labels: labels:
- Add - Add
Assignees: assignees:
- pooneyy - pooneyy
body: body:
- type: markdown - type: markdown

View File

@ -3,7 +3,7 @@ description: "提交使用中的相关问题 / Submit issues you encounter while
title: "[反馈问题] 哪个应用出现了问题? / Which app has any problem?" title: "[反馈问题] 哪个应用出现了问题? / Which app has any problem?"
labels: labels:
- Feedback - Feedback
Assignees: assignees:
- pooneyy - pooneyy
body: body:
- type: markdown - type: markdown

View File

@ -100,7 +100,7 @@ jobs:
new_version=$(cat "apps/$app_name/${old_version}.version") new_version=$(cat "apps/$app_name/${old_version}.version")
rm -f "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 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" \ -H "X-GitHub-Api-Version: 2022-11-28" \
/repos/${{ github.repository }}/statuses/$(git show -s --format=%H) \ /repos/${{ github.repository }}/statuses/$(git show -s --format=%H) \
-f 'state=success' \ -f 'state=success' \