mirror of
https://github.com/yt-dlp/yt-dlp.git
synced 2024-11-10 02:13:16 +00:00
21 lines
440 B
YAML
21 lines
440 B
YAML
|
name: Anti-Spam
|
||
|
on:
|
||
|
issues:
|
||
|
types: [opened]
|
||
|
|
||
|
permissions:
|
||
|
issues: write
|
||
|
|
||
|
jobs:
|
||
|
lockdown:
|
||
|
name: 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 too_heated -R "${REPOSITORY}"
|