ci: add issue open check user

This commit is contained in:
xrkffgg 2021-03-04 22:51:42 +08:00 committed by GitHub
parent 3c7030acb9
commit 4f38f451c5
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -8,8 +8,13 @@ jobs:
check-issue:
runs-on: ubuntu-latest
steps:
- uses: actions-cool/check-user-permission@v1.0.0
id: checkUser
with:
require: 'write'
- name: check invalid
if: contains(github.event.issue.body, 'ant-design-issue-helper') == false
if: (contains(github.event.issue.body, 'ant-design-issue-helper') == false) && (steps.checkUser.outputs.result == 'false')
uses: actions-cool/issues-helper@v1.2
with:
actions: 'create-comment,add-labels,close-issue'