-
Notifications
You must be signed in to change notification settings - Fork 14
39 lines (28 loc) · 940 Bytes
/
greetings.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
name: greetings
on:
issues:
types:
- opened
issue_comment:
types:
- created
pull_request_target:
types:
- opened
pull_request_review_comment:
types:
- created
jobs:
greeting:
runs-on: ubuntu-latest
permissions:
issues: write
pull-requests: write
steps:
- uses: actions/first-interaction@v1
with:
repo-token: ${{ secrets.GITHUB_TOKEN }}
issue-message: |
Hello @${{ github.actor }} , thank you for submitting an issue! A project committer will shortly review the issue.
pr-message: |
Thank you @${{ github.actor }} , for contributing to this project, your support is much appreciated. A project committer will shortly review your contribution.