Skip to content

Commit c18ddda

Browse files
committed
Add welcome workflow for new contributors
Signed-off-by: Ryan Hsieh(ryanHwH20) <ryanhsieh20@gmail.com>
1 parent 588f2ae commit c18ddda

File tree

1 file changed

+55
-0
lines changed

1 file changed

+55
-0
lines changed
Lines changed: 55 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,55 @@
1+
name: Welcome New Contributors
2+
3+
on:
4+
pull_request_target:
5+
types:
6+
- opened
7+
issues:
8+
types:
9+
- opened
10+
11+
permissions:
12+
contents: read
13+
issues: write
14+
pull-requests: write
15+
16+
jobs:
17+
welcome:
18+
runs-on: ubuntu-latest
19+
steps:
20+
- uses: actions/first-interaction@v3
21+
with:
22+
repo-token: ${{ secrets.GITHUB_TOKEN }}
23+
issue-message: |
24+
πŸŽ‰ **Welcome to the Kubeflow Trainer!** πŸŽ‰
25+
26+
Thanks for opening your first issue! We're happy to have you as part of our community πŸš€
27+
28+
**Here's what happens next:**
29+
30+
- Our team will review your issue soon!
31+
- If you'd like to contribute to this issue, check out our [Contributing Guide](https://github.com/kubeflow/trainer/blob/master/CONTRIBUTING.md) for repo-specific guidelines and the [Kubeflow Contributor Guide](https://www.kubeflow.org/docs/about/contributing/) for general community standards.
32+
33+
**Join the community:**
34+
- **Slack**: Join our [#kubeflow-trainer](https://www.kubeflow.org/docs/about/community/#kubeflow-slack-channels) Slack channel.
35+
- **Meetings**: Attend the [Kubeflow AutoML and Training Working Group](https://bit.ly/2PWVCkV) bi-weekly meetings.
36+
37+
Feel free to ask questions in the comments if you need any help or clarification!
38+
Thanks again for contributing to Kubeflow! πŸ™
39+
40+
pr-message: |
41+
πŸŽ‰ **Welcome to the Kubeflow Trainer!** πŸŽ‰
42+
43+
Thanks for opening your first PR! We're happy to have you as part of our community πŸš€
44+
45+
**Here's what happens next:**
46+
47+
- If you haven't already, please check out our [Contributing Guide](https://github.com/kubeflow/trainer/blob/master/CONTRIBUTING.md) for repo-specific guidelines and the [Kubeflow Contributor Guide](https://www.kubeflow.org/docs/about/contributing/) for general community standards.
48+
- Our team will review your PR soon!
49+
50+
**Join the community:**
51+
- **Slack**: Join our [#kubeflow-trainer](https://www.kubeflow.org/docs/about/community/#kubeflow-slack-channels) Slack channel.
52+
- **Meetings**: Attend the [Kubeflow AutoML and Training Working Group](https://bit.ly/2PWVCkV) bi-weekly meetings.
53+
54+
Feel free to ask questions in the comments if you need any help or clarification!
55+
Thanks again for contributing to Kubeflow! πŸ™

0 commit comments

Comments
Β (0)