Skip to content

Commit aacd305

Browse files
committed
added js workflow
1 parent fe3d5a2 commit aacd305

1 file changed

Lines changed: 17 additions & 0 deletions

File tree

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
on:
2+
issues:
3+
types: [opened]
4+
5+
jobs:
6+
comment:
7+
runs-on: ubuntu-latest
8+
steps:
9+
- uses: actions/github-script@v8
10+
with:
11+
script: |
12+
github.rest.issues.createComment({
13+
issue_number: context.issue.number,
14+
owner: context.repo.owner,
15+
repo: context.repo.repo,
16+
body: '👋 Thanks for reporting!'
17+
})

0 commit comments

Comments
 (0)