mithril-vndb/.github/workflows/issue-create.yml
2024-09-23 04:54:24 -07:00

13 lines
288 B
YAML

name: Ping triage on issue create
on:
issues:
types: [opened]
jobs:
notify:
runs-on: ubuntu-latest
steps:
- run: gh issue comment ${{ github.event.issue.url }} --body '@MithrilJS/triage Please take a look.'
env:
GITHUB_TOKEN: ${{ github.token }}