iPlayer's desktop app for Windows and MacOS is being discontinued today. Will this effect get_iplayer's functionality? #27
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
on: | |
issues: | |
types: | |
- opened | |
jobs: | |
new-issue: | |
runs-on: ubuntu-latest | |
name: New Issue | |
steps: | |
- name: Close/Lock/Label | |
shell: bash | |
run: > | |
gh issue close -R ${{ github.repository }} "${{ github.event.issue.number }}" && | |
gh issue lock -R ${{ github.repository }} "${{ github.event.issue.number }}" && | |
gh issue edit -R ${{ github.repository }} --add-label "invalid" "${{ github.event.issue.number }}" | |
env: | |
GH_TOKEN: ${{ github.token }} |