[ie/youtube] Fix `uploader_id` extraction (#11818)
[yt-dlp.git] / .github / workflows / issue-lockdown.yml
blob4b973e2e6134814e98161459a1d4a244660adfbf
1 name: Issue Lockdown
2 on:
3   issues:
4     types: [opened]
6 permissions:
7   issues: write
9 jobs:
10   lockdown:
11     name: Issue Lockdown
12     if: vars.ISSUE_LOCKDOWN
13     runs-on: ubuntu-latest
14     steps:
15       - name: "Lock new issue"
16         env:
17           GH_TOKEN: ${{ github.token }}
18           ISSUE_NUMBER: ${{ github.event.issue.number }}
19           REPOSITORY: ${{ github.repository }}
20         run: |
21           gh issue lock "${ISSUE_NUMBER}" -R "${REPOSITORY}"