We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ead1040 commit cd3c1d1Copy full SHA for cd3c1d1
.github/workflows/welcome-new-users.yml
@@ -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
24
+ add-labels: "new:contributor"
25
0 commit comments