mirror of
https://github.com/yt-dlp/yt-dlp.git
synced 2024-11-12 20:23:11 +00:00
ad9a8115aa
Authored by: bashonly
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}"
|