mirror of
https://github.com/apache/superset.git
synced 2026-07-25 16:12:39 +00:00
Signed-off-by: hainenber <dotronghai96@gmail.com> Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: David <39565245+dmunozv04@users.noreply.github.com> Co-authored-by: Hans Yu <hans.yu@outlook.de> Co-authored-by: Shaitan <105581038+sha174n@users.noreply.github.com> Co-authored-by: Claude Opus 4.8 <noreply@anthropic.com> Co-authored-by: Rehan Islam <2025eb01502@online.bits-pilani.ac.in> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: J0s3-H3nr1qu3 <hareboom@gmail.com> Co-authored-by: José Teixeira <jose.teixeira@douroeci.com>
30 lines
1.3 KiB
YAML
30 lines
1.3 KiB
YAML
name: Welcome New Contributor
|
|
|
|
on:
|
|
# zizmor: ignore[dangerous-triggers] - posts a welcome comment only; does not check out or execute PR-provided code
|
|
pull_request_target:
|
|
types: [opened]
|
|
|
|
jobs:
|
|
welcome:
|
|
runs-on: ubuntu-26.04
|
|
if: github.event.pull_request.author_association == 'FIRST_TIME_CONTRIBUTOR'
|
|
permissions:
|
|
pull-requests: write
|
|
|
|
steps:
|
|
- name: Welcome Message
|
|
uses: actions/first-interaction@1c4688942c71f71d4f5502a26ea67c331730fa4d # v3.1.0
|
|
with:
|
|
repo_token: ${{ github.token }}
|
|
issue_message: |-
|
|
Congrats on opening your first issue and thank you for contributing to Superset! :tada: :heart:
|
|
|
|
Please read our [New Contributor Welcome & Expectations](https://github.com/apache/superset/wiki/New-Contributor-Welcome-&-Expectations) guide.
|
|
pr_message: |-
|
|
Congrats on making your first PR and thank you for contributing to Superset! :tada: :heart:
|
|
|
|
Please read our [New Contributor Welcome & Expectations](https://github.com/apache/superset/wiki/New-Contributor-Welcome-&-Expectations) guide.
|
|
|
|
We hope to see you in our [Slack](https://apache-superset.slack.com/) community too! Not signed up? Use our [Slack App](http://bit.ly/join-superset-slack) to self-register.
|