Bump peter-evans/create-issue-from-file from b4f9ee0a9d4abbfc6986601d9b1a4f8f8e74c77e to 054d391345e3ddfc0adcc4dec3285302fb3fb06d #2174
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Close issue/PR on adding invalid label | |
on: | |
issues: | |
types: [labeled] | |
pull_request_target: | |
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_target' }} | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
run: gh pr close ${{ github.event.pull_request.html_url }} |