Skip to content

Commit 718fbf6

Browse files
committed
Update greetings.yml
Change greeting Signed-off-by: Juan Pinzon <juancpinzone@hotmail.com>
1 parent dc3198d commit 718fbf6

File tree

1 file changed

+10
-5
lines changed

1 file changed

+10
-5
lines changed

.github/workflows/greetings.yml

+10-5
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,21 @@
11
name: Greetings
22

3-
on: [pull_request, issues]
4-
3+
on:
4+
issues:
5+
types: [opened]
6+
pull_request_target:
7+
types: [opened, reopened]
8+
59
jobs:
610
greeting:
711
runs-on: ubuntu-latest
812
permissions:
913
issues: write
1014
pull-requests: write
1115
steps:
12-
- uses: actions/first-interaction@v1
16+
- name: 'Greet the contributor'
17+
uses: garg3133/welcome-new-contributors@v1.2
1318
with:
1419
repo-token: ${{ secrets.GITHUB_TOKEN }}
15-
issue-message: 'Thank you so much for reporting an issue'
16-
pr-message: 'Thank you so much for contributing to this project with your first pull request'
20+
issue-message: 'Hi, @${{ github.actor }}. Thank you so much for reporting an issue.'
21+
pr-message: 'Hi, @${{ github.actor }}. Thank you so much for contributing to this project. Keep making such awesome contributions!'

0 commit comments

Comments
 (0)