This is an automated email from the ASF dual-hosted git repository.
elizabeth pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/superset.git
The following commit(s) were added to refs/heads/master by this push:
new ccba5b2f69 chore: add action to welcome new users (#20401)
ccba5b2f69 is described below
commit ccba5b2f69f8d9efb805e584de84f68afab1bb2c
Author: Elizabeth Thompson <[email protected]>
AuthorDate: Wed Jun 15 16:27:55 2022 -0700
chore: add action to welcome new users (#20401)
* add action to welcome new users
* fix typo
---
.github/workflows/welcome-new-users.yml | 25 +++++++++++++++++++++++++
1 file changed, 25 insertions(+)
diff --git a/.github/workflows/welcome-new-users.yml
b/.github/workflows/welcome-new-users.yml
new file mode 100644
index 0000000000..e55028af94
--- /dev/null
+++ b/.github/workflows/welcome-new-users.yml
@@ -0,0 +1,25 @@
+name: Welcome New Contributor
+
+on:
+ pull_request_target:
+ types: [opened]
+
+jobs:
+ welcome:
+ runs-on: ubuntu-latest
+ permissions:
+ issues: write
+
+ steps:
+ - name: Welcome Message
+ uses: actions/[email protected]
+ with:
+ repo-token: ${{ secrets.GITHUB_TOKEN }}
+ pr-message: |-
+ Congrats on making your first PR and thank you for contributing to
Superset! :tada: :heart:
+ We hope to see you in our
[Slack](https://apache-superset.slack.com/) community too!
+ - name: First Time Label
+ uses: andymckay/labeler@master
+ with:
+ add-labels: "new:contributor"
+ repo-token: ${{ secrets.GITHUB_TOKEN }}