添加pikpak分享時,應該自動默認平台為網頁,當使用批量添加後就無需一個一個去設定平台後才能讓pikpak分享工作。 #406
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: 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' |