Skip to content

Commit

Permalink
👷add issue checker workflow (#2594)
Browse files Browse the repository at this point in the history
  • Loading branch information
kuitos authored Aug 15, 2023
1 parent 0386e90 commit 1bf10a5
Showing 1 changed file with 37 additions and 0 deletions.
37 changes: 37 additions & 0 deletions .github/workflows/issue-checker.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,37 @@
name: Issue Checker

on:
issues:
types: [opened, edited]

jobs:
check-permission:
runs-on: ubuntu-latest
outputs:
require-result: ${{ steps.checkUser.outputs.require-result }}
steps:
- uses: actions-cool/check-user-permission@v2
id: checkUser
with:
require: 'write'

check-open:
runs-on: ubuntu-latest
needs: check-permission
if: needs.check-permission.outputs.require-result == 'false' && github.event.issue.state == 'open' && contains(github.event.issue.title, '[Feature Request]') == false && contains(github.event.issue.body, 'https://github.com') == false && contains(github.event.issue.body, 'https://stackblitz.com') == false && contains(github.event.issue.body, 'https://codesandbox.io') == false
steps:
- uses: actions-cool/maintain-one-comment@v3
with:
body: 由于缺乏足够的信息(github、stackblitz、codesandbox等可复现仓库),我们暂时关闭了该 Issue。请修改(不要回复) Issue 提供[最小重现](https://stackoverflow.com/help/minimal-reproducible-example)以重新开启。谢谢。
- uses: actions-cool/issues-helper@v3
with:
actions: close-issue

check-close:
runs-on: ubuntu-latest
needs: check-permission
if: needs.check-permission.outputs.require-result == 'false' && github.event.issue.state == 'closed' && (contains(github.event.issue.body, 'https://github.com') == true || contains(github.event.issue.body, 'https://stackblitz.com') == true || contains(github.event.issue.body, 'https://codesandbox.io') == true)
steps:
- uses: actions-cool/issues-helper@v3
with:
actions: open-issue

1 comment on commit 1bf10a5

@vercel
Copy link

@vercel vercel bot commented on 1bf10a5 Aug 15, 2023

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Please sign in to comment.