We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents dc4cbc8 + 508ed62 commit 6851b90Copy full SHA for 6851b90
1 file changed
.github/workflows/welcome_message.yml
@@ -0,0 +1,21 @@
1
+name: 'Welcome New Contributors'
2
+
3
+on:
4
+ issues:
5
+ types: [opened]
6
+ pull_request_target:
7
8
+permissions:
9
+ issues: write
10
+ pull-requests: write
11
+jobs:
12
+ welcome-new-contributor:
13
+ runs-on: ubuntu-latest
14
+ timeout-minutes: 2
15
+ steps:
16
+ - name: 'Greet the contributor'
17
+ uses: garg3133/welcome-new-contributors@a38583ed8282e23d63d7bf919ca2d9fb95300ca6
18
+ with:
19
+ token: ${{ secrets.GITHUB_TOKEN }}
20
+ issue-message: 'Hello there, thanks for opening your first issue. We welcome you to the community!'
21
+ pr-message: 'Hello there, thanks for opening your first Pull Request. Someone will review it soon.'
0 commit comments