Skip to content

Commit 117d9f2

Browse files
chore: add welcome workflow for new contributors (#3297)
* chore: add welcome workflow for new contributors Signed-off-by: Aniket Patil <aniketpatil2027@gmail.com> * chore: incorporate issue template details in welcome workflow Signed-off-by: Aniket Patil <aniketpatil2027@gmail.com> * Update welcome-new-contributors.yaml Signed-off-by: Julius von Kohout <45896133+juliusvonkohout@users.noreply.github.com> * Update welcome-new-contributors.yaml Signed-off-by: Julius von Kohout <45896133+juliusvonkohout@users.noreply.github.com> * Update issue-report.yml Signed-off-by: Julius von Kohout <45896133+juliusvonkohout@users.noreply.github.com> * Update welcome-new-contributors.yaml Signed-off-by: Julius von Kohout <45896133+juliusvonkohout@users.noreply.github.com> * Update welcome-new-contributors.yaml Signed-off-by: Julius von Kohout <45896133+juliusvonkohout@users.noreply.github.com> * Update welcome-new-contributors.yaml Signed-off-by: Julius von Kohout <45896133+juliusvonkohout@users.noreply.github.com> --------- Signed-off-by: Aniket Patil <aniketpatil2027@gmail.com> Signed-off-by: Julius von Kohout <45896133+juliusvonkohout@users.noreply.github.com> Co-authored-by: Julius von Kohout <45896133+juliusvonkohout@users.noreply.github.com>
1 parent 854bd3a commit 117d9f2

File tree

2 files changed

+56
-0
lines changed

2 files changed

+56
-0
lines changed

.github/ISSUE_TEMPLATE/issue-report.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -39,6 +39,7 @@ body:
3939
- master
4040
- 1.10.2
4141
- 1.11
42+
- 1.12
4243
validations:
4344
required: true
4445
- type: textarea
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+
issues: write
13+
pull-requests: write
14+
15+
jobs:
16+
welcome:
17+
runs-on: ubuntu-latest
18+
steps:
19+
- uses: actions/first-interaction@v3
20+
with:
21+
repo_token: ${{ secrets.GITHUB_TOKEN }}
22+
issue_message: |
23+
**Welcome to the Kubeflow Manifests Repository**
24+
25+
Thanks for opening your first issue. We are trying to deal with your issue on a best-effort basis. without guarantees.
26+
If you need [commercial support](https://www.kubeflow.org/docs/started/support/#support-from-commercial-providers-in-the-kubeflow-ecosystem) instead please reach out to us.
27+
Please make sure to follow our default issue template so maintainers can quickly understand and reproduce the problem instead of just closing the issue.
28+
The template asks for:
29+
- Environment details (Kubernetes version, OS, platform)
30+
- Components involved
31+
- Steps to reproduce
32+
- Current versus expected behavior
33+
- Properly formatted logs, screenshots or error messages
34+
35+
**Community Resources:**
36+
- Join us on the CNCF Slack: https://www.kubeflow.org/docs/about/community/#kubeflow-slack-channels
37+
- Attend our community meetings: https://www.kubeflow.org/docs/about/community/
38+
39+
Feel free to ask questions — we are here to help.
40+
41+
pr_message: |
42+
**Welcome to the Kubeflow Manifests Repository**
43+
44+
Thanks for opening your first PR. Your contribution means a lot to the Kubeflow community.
45+
46+
**Before making more PRs:**
47+
Please ensure your PR follows our [Contributing Guide](https://github.com/kubeflow/manifests/blob/master/CONTRIBUTING.md).
48+
Please also be aware that many components are synchronizes from upstream via the scripts in /scripts.
49+
So in some cases you have to fix the problem in the upstream repositories first, but you can use a PR against kubeflow/manifests to test the platform integration.
50+
51+
**Community Resources:**
52+
- CNCF Slack channels: https://www.kubeflow.org/docs/about/community/#kubeflow-slack-channels
53+
- Community meetings: https://www.kubeflow.org/docs/about/community/
54+
55+
Thanks again for helping to improve Kubeflow.

0 commit comments

Comments
 (0)