Skip to content

Commit

Permalink
add action to welcome new users
Browse files Browse the repository at this point in the history
  • Loading branch information
eschutho committed Jun 15, 2022
1 parent ead1040 commit cd3c1d1
Showing 1 changed file with 25 additions and 0 deletions.
25 changes: 25 additions & 0 deletions .github/workflows/welcome-new-users.yml
Original file line number Diff line number Diff line change
@@ -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-messsage: |-
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 }}

0 comments on commit cd3c1d1

Please sign in to comment.