mirror of
https://gitee.com/layui/layui.git
synced 2025-04-05 17:38:02 +08:00
ci(issue): 优化 issue 被关闭时的标签处理
This commit is contained in:
parent
66adedff5a
commit
9d9c2787c3
5
.github/workflows/issue-closed.yml
vendored
5
.github/workflows/issue-closed.yml
vendored
@ -22,11 +22,12 @@ jobs:
|
|||||||
};
|
};
|
||||||
const issue = await github.rest.issues.get(config);
|
const issue = await github.rest.issues.get(config);
|
||||||
|
|
||||||
// 是否带有 `bug` 标签
|
// 是否带有 `bug`, `wontfix` 标签
|
||||||
const hasBugLabel = issue.data.labels.some(label => label.name === 'bug');
|
const hasBugLabel = issue.data.labels.some(label => label.name === 'bug');
|
||||||
|
const hasWontfixLabel = issue.data.labels.some(label => label.name === 'wontfix');
|
||||||
|
|
||||||
// 对带有 `bug` 标签的 issue 追加 `resolved` 标签,表示 bug 已解决。
|
// 对带有 `bug` 标签的 issue 追加 `resolved` 标签,表示 bug 已解决。
|
||||||
if (hasBugLabel) {
|
if (hasBugLabel && !hasWontfixLabel) {
|
||||||
github.rest.issues.addLabels({
|
github.rest.issues.addLabels({
|
||||||
...config,
|
...config,
|
||||||
labels: ['resolved']
|
labels: ['resolved']
|
||||||
|
Loading…
Reference in New Issue
Block a user