平板全屏播放后退出会强制横屏 #230
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: Issue Wontfix | |
| on: | |
| issues: | |
| types: [labeled] | |
| permissions: | |
| issues: write | |
| jobs: | |
| lock-issue: | |
| runs-on: ubuntu-latest | |
| if: github.event.label.name == 'wontfix' | |
| steps: | |
| - name: Create comment | |
| uses: actions-cool/issues-helper@v3 | |
| with: | |
| actions: 'create-comment' | |
| issue-number: ${{ github.event.issue.number }} | |
| body: | | |
| Hello @${{ github.event.issue.user.login }}, this issue will not be worked on and will be closed. | |
| - name: Close issue | |
| uses: actions-cool/issues-helper@v3 | |
| with: | |
| actions: 'close-issue' |