Skip to content

Commit a5d32b3

Browse files
committed
feat: Added greetings Action.
Signed-off-by: Guennadi Maximov C <g.maxc.fox@protonmail.com>
1 parent f8c16ef commit a5d32b3

1 file changed

Lines changed: 35 additions & 0 deletions

File tree

.github/workflows/greetings.yml

Lines changed: 35 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,35 @@
1+
name: Greetings
2+
3+
on:
4+
pull_request:
5+
types:
6+
- opened
7+
issues:
8+
types:
9+
- opened
10+
11+
jobs:
12+
greet:
13+
name: Greet First-Time Contributors
14+
runs-on: ubuntu-latest
15+
16+
permissions:
17+
issues: write
18+
pull-requests: write
19+
20+
steps:
21+
- uses: actions/first-interaction@v2.0.0
22+
with:
23+
repo-token: ${{ secrets.GITHUB_TOKEN }}
24+
issue-message: |
25+
## Automated Greeting
26+
27+
Thank you for your feedback!
28+
29+
Your issue will be adressed **ASAP**.
30+
pr-message: |
31+
## Automated Greeting
32+
33+
Many many thanks for your contributions!
34+
35+
Your PR will be checked **ASAP**.

0 commit comments

Comments
 (0)