Initial Test #25
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: Check blocklist | |
on: | |
issues: | |
types: | |
- labeled | |
permissions: | |
contents: write | |
issues: write | |
jobs: | |
check-blocklist: | |
if: ${{ github.event.label.name == 'check blocklist' }} | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
with: | |
ref: main | |
- name: Check blocklist from issue | |
run: | | |
bash scripts/check.sh ${{ github.event.issue.body }} | |
# Comment results | |
gh issue comment ${{ github.event.issue.number }} -b \ | |
$(cat data/TEMPLATE.md) | |
env: | |
GH_TOKEN: ${{ github.token }} |