umijs 怎么打包配置多个页面呢? #2493
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
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 | |
steps: | |
- uses: actions-cool/maintain-one-comment@v3 | |
with: | |
body: 由于缺乏足够的信息,我们暂时关闭了该 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) | |
steps: | |
- uses: actions-cool/issues-helper@v3 | |
with: | |
actions: open-issue |