mirror of
https://github.com/hagezi/dns-blocklists.git
synced 2026-04-29 12:05:10 +00:00
21 lines
627 B
YAML
21 lines
627 B
YAML
name: malicious-scam-phishing
|
|
on:
|
|
issues:
|
|
types: labeled
|
|
jobs:
|
|
comment:
|
|
if: github.event.label.name == 'malicious/scam/phishing'
|
|
permissions:
|
|
issues: write
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- run: gh issue comment "$NUMBER" --body "$BODY"
|
|
env:
|
|
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
|
GH_REPO: ${{ github.repository }}
|
|
NUMBER: ${{ github.event.issue.number }}
|
|
BODY: >
|
|
Thank you for your support.
|
|
Ping @durablenapkin @jarelllama @iam-py-test @MikhailKasimov for checking and possibly including the domain(s).
|
|
|