590A:31190E:55961D:614135:6A2E7EBC 4749:3F74A7:557C25:6126CC:6A2E7EC8 1BEF:1F740:1FF85B2:25A654C:6A2E7F40 4514:84E8E:1F1A697:24CAFBF:6A2E7F99 1BEF:1F740:2010C6F:25C2827:6A2E7FB8 #5964
This file contains hidden or 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 | |
| # **What it does**: This action closes issues that are labeled as invalid in the repo. | |
| on: | |
| issues: | |
| types: [labeled] | |
| pull_request_target: | |
| types: [labeled] | |
| permissions: | |
| contents: read | |
| issues: write | |
| pull-requests: write | |
| jobs: | |
| close-on-adding-invalid-label: | |
| if: | |
| github.repository == 'github/copilot-cli' && github.event.label.name == | |
| 'invalid' | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Close issue | |
| if: ${{ github.event_name == 'issues' }} | |
| env: | |
| GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
| URL: ${{ github.event.issue.html_url }} | |
| run: gh issue close $URL | |
| - name: Close PR | |
| if: ${{ github.event_name == 'pull_request_target' }} | |
| env: | |
| GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
| URL: ${{ github.event.pull_request.html_url }} | |
| run: gh pr close $URL |