mirror of https://github.com/yt-dlp/yt-dlp
You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
22 lines
459 B
YAML
22 lines
459 B
YAML
2 months ago
|
name: Issue Lockdown
|
||
2 months ago
|
on:
|
||
|
issues:
|
||
|
types: [opened]
|
||
|
|
||
|
permissions:
|
||
|
issues: write
|
||
|
|
||
|
jobs:
|
||
|
lockdown:
|
||
|
name: Issue Lockdown
|
||
2 months ago
|
if: vars.ISSUE_LOCKDOWN
|
||
2 months ago
|
runs-on: ubuntu-latest
|
||
|
steps:
|
||
|
- name: "Lock new issue"
|
||
|
env:
|
||
|
GH_TOKEN: ${{ github.token }}
|
||
|
ISSUE_NUMBER: ${{ github.event.issue.number }}
|
||
|
REPOSITORY: ${{ github.repository }}
|
||
|
run: |
|
||
2 months ago
|
gh issue lock "${ISSUE_NUMBER}" -R "${REPOSITORY}"
|