能否把内置的ArtPlayer替换成dplayer更适合生产环境,暂停视频,截图画面的时候避免截图进去暂停按钮 #1161
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: Remove working label when issue closed | |
| on: | |
| issues: | |
| types: [closed] | |
| jobs: | |
| rm-working: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Remove working label | |
| uses: actions-cool/issues-helper@v3 | |
| with: | |
| actions: 'remove-labels' | |
| token: ${{ secrets.GITHUB_TOKEN }} | |
| issue-number: ${{ github.event.issue.number }} | |
| labels: 'working,pr-welcome' |