Skip to content

Commit cd3c1d1

Browse files
committed
add action to welcome new users
1 parent ead1040 commit cd3c1d1

File tree

1 file changed

+25
-0
lines changed

1 file changed

+25
-0
lines changed
+25
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
name: Welcome New Contributor
2+
3+
on:
4+
pull_request_target:
5+
types: [opened]
6+
7+
jobs:
8+
welcome:
9+
runs-on: ubuntu-latest
10+
permissions:
11+
issues: write
12+
13+
steps:
14+
- name: Welcome Message
15+
uses: actions/[email protected]
16+
with:
17+
repo-token: ${{ secrets.GITHUB_TOKEN }}
18+
pr-messsage: |-
19+
Congrats on making your first PR and thank you for contributing to Superset! :tada: :heart:
20+
We hope to see you in our [Slack](https://apache-superset.slack.com/) community too!
21+
- name: First Time Label
22+
uses: andymckay/labeler@master
23+
with:
24+
add-labels: "new:contributor"
25+
repo-token: ${{ secrets.GITHUB_TOKEN }}

0 commit comments

Comments
 (0)