Merge pull request #21331 from github/ramyaparimi/close-on-invalid-label
Create close-on-invalid-label.yaml
This commit is contained in:
29
.github/workflows/close-on-invalid-label.yaml
vendored
Normal file
29
.github/workflows/close-on-invalid-label.yaml
vendored
Normal file
@@ -0,0 +1,29 @@
|
||||
name: Close issue/PR on adding invalid label
|
||||
|
||||
on:
|
||||
issues:
|
||||
types: [labeled]
|
||||
pull_request:
|
||||
types: [labeled]
|
||||
|
||||
permissions:
|
||||
issues: write
|
||||
pull-requests: write
|
||||
|
||||
jobs:
|
||||
close-on-adding-invalid-label:
|
||||
if: github.repository == 'github/docs' && github.event.label.name == 'invalid'
|
||||
runs-on: ubuntu-latest
|
||||
|
||||
steps:
|
||||
- name: Close issue
|
||||
if: ${{ github.event_name == 'issues' }}
|
||||
env:
|
||||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
||||
run: gh issue close ${{ github.event.issue.html_url }}
|
||||
|
||||
- name: Close PR
|
||||
if: ${{ github.event_name == 'pull_request' }}
|
||||
env:
|
||||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
||||
run: gh pr close ${{ github.event.pull_request.html_url }}
|
||||
Reference in New Issue
Block a user