[Need Help]同时运行三次runAsync,只有最后一次才有结果,其他两个Promise永远pendding #184
This file contains hidden or 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: Lock Issue | |
| on: | |
| issues: | |
| types: [labeled] | |
| jobs: | |
| lock-issue: | |
| runs-on: ubuntu-latest | |
| if: github.event.label.name == 'invalid' | |
| steps: | |
| - name: Lock issue | |
| uses: actions-cool/issues-helper@v1 | |
| with: | |
| actions: 'lock-issue' | |
| issue-number: ${{ github.event.issue.number }} |