-
Notifications
You must be signed in to change notification settings - Fork 2k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
37 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |
1bf10a5
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Successfully deployed to the following URLs:
qiankun – ./
qiankun-git-master-chencheng.vercel.app
qiankun-chencheng.vercel.app
qiankun.umijs.org
qiankun.vercel.app