From 6abb1eedd89313c7f1b6768b9bb6eca966010a53 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E8=B4=A4=E5=BF=83?= <3277200+sentsim@users.noreply.github.com> Date: Mon, 25 Dec 2023 12:15:51 +0800 Subject: [PATCH] =?UTF-8?q?ci:=20=E4=BC=98=E5=8C=96=20issue=20=E8=A2=AB?= =?UTF-8?q?=E5=88=9B=E5=BB=BA=E5=92=8C=E8=A2=AB=E7=BC=96=E8=BE=91=E6=97=B6?= =?UTF-8?q?=E7=9A=84=20action=20=E6=A0=A1=E9=AA=8C=E9=80=BB=E8=BE=91=20(#1?= =?UTF-8?q?496)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit * ci(issue): 增加 duplicate 标签的定时关闭任务 * docs(issue): 优化 discussion 标签文案 * ci: 优化 issue 被创建和被编辑时的 action 校验逻辑 * refactor(issue-opened): 简化语句 --- .github/workflows/issue-close-require.yml | 8 +++++- .github/workflows/issue-labeled.yml | 2 +- .github/workflows/issue-opened.yml | 33 ++++++++++++++--------- 3 files changed, 29 insertions(+), 14 deletions(-) diff --git a/.github/workflows/issue-close-require.yml b/.github/workflows/issue-close-require.yml index aaf5d0ea..31ff5338 100644 --- a/.github/workflows/issue-close-require.yml +++ b/.github/workflows/issue-close-require.yml @@ -22,9 +22,15 @@ jobs: inactive-day: 3 body: | 由于超过 3 天仍未收到相关重现或其他更多信息,该 issue 已被自动关闭。 + - name: Close issues with inactive days of 3 + uses: actions-cool/issues-helper@v3 + with: + actions: 'close-issues' + labels: 'duplicate' + inactive-day: 3 - name: Close issues with inactive days of 7 uses: actions-cool/issues-helper@v3 with: actions: 'close-issues' - labels: 'compatibility,resolved,unrelated,usage' + labels: 'compatibility,resolved,usage' inactive-day: 7 diff --git a/.github/workflows/issue-labeled.yml b/.github/workflows/issue-labeled.yml index 447e5649..7f7a8ce1 100644 --- a/.github/workflows/issue-labeled.yml +++ b/.github/workflows/issue-labeled.yml @@ -63,7 +63,7 @@ jobs: actions: 'create-comment,close-issue' token: ${{ secrets.GITHUB_TOKEN }} body: | - @${{ github.event.issue.user.login }} 你好,Issue 一般只接受「Bug 报告」和「功能请求」,而您的议题涉及到如何使用、功能疑惑或其他业务相关的问题,这并不适合作为 Issue 讨论。建议您通过以下方式寻求解决方案: + @${{ github.event.issue.user.login }} 你好,Issue 只接受「Bug 报告」和「功能请求」,而您的议题涉及到如何使用、功能疑惑或其他业务相关的问题,这并不适合作为 Issue 讨论。建议您通过以下方式寻求解决方案: - 仔细查阅 Layui 官方文档:https://layui.dev - 通过其他技术社区搜索相关资料、或充分利用当前主流的人工智能大模型 - [Discussions](https://github.com/layui/layui/discussions) diff --git a/.github/workflows/issue-opened.yml b/.github/workflows/issue-opened.yml index e439ed4c..01c83ff0 100644 --- a/.github/workflows/issue-opened.yml +++ b/.github/workflows/issue-opened.yml @@ -1,4 +1,4 @@ -name: Issue opened +name: Issue Opened on: issues: @@ -31,24 +31,33 @@ jobs: issue_number: context.issue.number, }; - const issue = context.payload.issue; - const issueBody = issue.body; - const requiredString = "layui-issue-template"; - const isCreatedByBot = context.payload.sender.type === 'Bot'; - const isValid = issueBody.includes(requiredString); + const payload = context.payload; + const isCreatedByBot = payload.sender.type === 'Bot'; + const issue = payload.issue; + const isValid = issue.body?.includes('layui-issue-template'); // 跳过 closed 状态的 issues if (issue.state === 'closed') { return console.log('Issue is closed.'); } + // 若修改的不是内容,则不必校验 + if (payload.action === 'edited') { + if (payload.changes && !payload.changes.body.from) { + return console.log('Edited fields exclude "body".'); + } + } + // 不符合规则或由机器人创建 - if (!isValid || isCreatedByBot) { - github.rest.issues.createComment({ - ...config, - body: `@${context.payload.sender.login} 你好,为了提升沟通效率,我们对 Issue 制定了严格的要求,你的 Issue 因不符合规定而被自动关闭。 - 建议您在下次创建 Issue 时,遵循相应规范和社区行为准则。谢谢。\n > ${process.env.CONTRIBUTING}` - }); + if (isCreatedByBot || !isValid) { + if (!isCreatedByBot) { + github.rest.issues.createComment({ + ...config, + body: `@${payload.sender.login} 你好,为了提升沟通效率,我们对 Issue 制定了严格的要求,你的 Issue 因不符合规定而被自动关闭。 + 建议您在下次创建 Issue 时,遵循相应规范和社区行为准则。谢谢。\n > ${process.env.CONTRIBUTING}` + }); + } + // 给 issue 添加指定标签和关闭 github.rest.issues.addLabels({ ...config, labels: ['invalid']