🔧 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:
parent
60513cb920
commit
4587c9b1b1
|
|
@ -3,7 +3,7 @@ description: "当前应用商店中的应用有新版本,才可填此表单。
|
|||
title: "[需要更新应用] 哪个应用需要更新? / Which app needs an update?"
|
||||
labels:
|
||||
- Update
|
||||
Assignees:
|
||||
assignees:
|
||||
- pooneyy
|
||||
body:
|
||||
- type: markdown
|
||||
|
|
|
|||
|
|
@ -3,7 +3,7 @@ description: "有当前应用商店未收录的应用,请提交此表单。 /
|
|||
title: "[需要增加应用] 需要增加哪个应用? / Which app needs to be added?"
|
||||
labels:
|
||||
- Add
|
||||
Assignees:
|
||||
assignees:
|
||||
- pooneyy
|
||||
body:
|
||||
- type: markdown
|
||||
|
|
|
|||
|
|
@ -3,7 +3,7 @@ description: "提交使用中的相关问题 / Submit issues you encounter while
|
|||
title: "[反馈问题] 哪个应用出现了问题? / Which app has any problem?"
|
||||
labels:
|
||||
- Feedback
|
||||
Assignees:
|
||||
assignees:
|
||||
- pooneyy
|
||||
body:
|
||||
- type: markdown
|
||||
|
|
|
|||
|
|
@ -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' \
|
||||
|
|
|
|||
Loading…
Reference in New Issue