santander.kwh.fino.digital: breakage #10651
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: Triage YouTube issues | |
| on: | |
| issues: | |
| types: opened | |
| jobs: | |
| check-if-youtube: | |
| name: Close as duplicate | |
| runs-on: ubuntu-slim | |
| if: contains(github.event.issue.title, 'youtube.com:') | |
| env: | |
| GH_TOKEN: ${{ github.token }} | |
| permissions: | |
| issues: write | |
| steps: | |
| - name: Add label | |
| run: | | |
| gh issue edit ${{ github.event.issue.number }} --repo ${{ github.repository }} --add-label "duplicate" | |
| - name: Close issue | |
| run: | | |
| gh issue close ${{ github.event.issue.number }} --repo ${{ github.repository }} --reason "not planned" --comment 'Please respect what is asked in the issue template to not unduly burden volunteers. | |
| This is a `youtube.com` issue: | |
| - If you are using uBO Lite, read [uBO Lite only thread](https://www.github.com/uBlockOrigin/uAssets/issues/30158) | |
| - If you are using uBO (not Lite), read [uBO only thread](https://www.github.com/uBlockOrigin/uAssets/issues/30157)' |