Why aren't the tracks downloading if they are like this? #2840
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 Lockdown | |
| on: | |
| issues: | |
| types: [opened] | |
| permissions: | |
| issues: write | |
| jobs: | |
| lockdown: | |
| name: Issue Lockdown | |
| if: vars.ISSUE_LOCKDOWN | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: "Lock new issue" | |
| env: | |
| GH_TOKEN: ${{ github.token }} | |
| ISSUE_NUMBER: ${{ github.event.issue.number }} | |
| REPOSITORY: ${{ github.repository }} | |
| run: | | |
| gh issue lock "${ISSUE_NUMBER}" -R "${REPOSITORY}" |