Add code owners, add triage ping, fix workflows

This commit is contained in:
Claudia Meadows 2024-09-02 08:31:46 -07:00
parent 2a7f31acb8
commit 8505916ebc
No known key found for this signature in database
GPG key ID: C86B594396786760
6 changed files with 19 additions and 5 deletions

13
.github/workflows/issue-create.yml vendored Normal file
View file

@ -0,0 +1,13 @@
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 }}