Skip to content

Commit

Permalink
added issues github workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
saidsef committed Sep 2, 2021
1 parent d8bc1ed commit 7c46114
Showing 1 changed file with 19 additions and 0 deletions.
19 changes: 19 additions & 0 deletions .github/workflows/issues.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
name: New issues into Triage
on:
issues:
types: [opened, reopened]

jobs:
comment:
runs-on: ubuntu-latest
steps:
- uses: actions/github-script@v4
with:
script: |
github.issues.createComment({
issue_number: context.issue.number,
owner: context.repo.owner,
repo: context.repo.repo,
body: '👋 Thanks for Reporting!',
labels: ['Triage']
})

0 comments on commit 7c46114

Please sign in to comment.