From f9ffc0c14fed20e4d953a90ea6f34d7ea8eed774 Mon Sep 17 00:00:00 2001 From: Wen Zhou Date: Mon, 5 Feb 2024 08:02:57 +0100 Subject: [PATCH 1/3] chore(Github): update issue template re-direct user for jira Signed-off-by: Wen Zhou --- .github/ISSUE_TEMPLATE/bug_report.md | 24 ++++-------- .github/ISSUE_TEMPLATE/bug_reportv2.md | 27 ------------- .github/ISSUE_TEMPLATE/feature_request.md | 48 +++++++++++++++++------ .github/workflows/auto_add_issues.yaml | 24 ------------ 4 files changed, 45 insertions(+), 78 deletions(-) delete mode 100644 .github/ISSUE_TEMPLATE/bug_reportv2.md delete mode 100644 .github/workflows/auto_add_issues.yaml diff --git a/.github/ISSUE_TEMPLATE/bug_report.md b/.github/ISSUE_TEMPLATE/bug_report.md index 00b6ed05681..91e16ba2fc3 100644 --- a/.github/ISSUE_TEMPLATE/bug_report.md +++ b/.github/ISSUE_TEMPLATE/bug_report.md @@ -1,24 +1,16 @@ --- -name: Bug report v1 -about: Create a report to help us improve v1 operator +name: End supporting for v1 +about: How To labels: bug, v1 --- -**Describe the bug** -A clear and concise description of what the bug is. +# What -**To Reproduce** -Steps to reproduce the behavior: -1. Go to '...' -2. Click on '....' -3. Scroll down to '....' -4. See error +In the summer of 2023, a new operator, v2, was released with enhanced support for ODH. +For more details, please refer to the blog post: [ODH Operator v2.0 Blog]([https://opendatahub.io/blog/2023-07-24-odh-operator-v2.0-blog/) -**Expected behavior** -A clear and concise description of what you expected to happen. +During the autumn of 2023, the project decided to end the support period for ODH operator v1. The release version v1.11.0 marks the final release for operator v1; thereafter, v2.4.0 takes over. Consequently, no new feature developments or bug fixes will be pursued for v1. -**Screenshots** -If applicable, add screenshots to help explain your problem. +# How -**Additional context** -Add any other context about the problem here. +We strongly recommend you switch from v1 to v2, see upgrade blog: https://opendatahub.io/docs/upgrading-open-data-hub/#upgrading-the-odh-operator-v1_upgradev diff --git a/.github/ISSUE_TEMPLATE/bug_reportv2.md b/.github/ISSUE_TEMPLATE/bug_reportv2.md deleted file mode 100644 index 52a1ebe7957..00000000000 --- a/.github/ISSUE_TEMPLATE/bug_reportv2.md +++ /dev/null @@ -1,27 +0,0 @@ ---- -name: Bug report v2 -about: Create a report to help us improve v2 operator -labels: bug, v2 ---- - -**Describe the bug** -A clear and concise description of what the bug is. -- on which branch, bug is observed: -- has it worked before/ in which version it starts breaking: -- etc - -**To Reproduce** -Steps to reproduce the behavior: -1. Go to '...' -2. Click on '....' -3. Scroll down to '....' -4. See error - -**Expected behavior** -A clear and concise description of what you expected to happen. - -**Screenshots** -If applicable, add screenshots to help explain your problem. - -**Additional context** -Add any other context about the problem here. diff --git a/.github/ISSUE_TEMPLATE/feature_request.md b/.github/ISSUE_TEMPLATE/feature_request.md index 23564059d7d..3ec4d458d19 100644 --- a/.github/ISSUE_TEMPLATE/feature_request.md +++ b/.github/ISSUE_TEMPLATE/feature_request.md @@ -1,17 +1,43 @@ --- -name: Feature request -about: Suggest an idea for this project -labels: enhancement +name: New way to report issue on Operator v2 +about: How To +labels: feature, enhancement, bug, v2 --- -**Is your feature request related to a problem? Please describe.** -A clear and concise description of what the problem is. Ex. I'm always frustrated when [...] +**Updates** -**Describe the solution you'd like** -A clear and concise description of what you want to happen. +In the winter of 2023, we transitioned GitHub Issues to the Red Hat Jira issue board located at https://issues.redhat.com. +Moving forward, kindly utilize this platform for reporting any new issues. -**Describe alternatives you've considered** -A clear and concise description of any alternative solutions or features you've considered. +All previous issues from GitHub have been seamlessly migrated to the issue board, accompanied by a link directing users to the corresponding old issues for follow-up. -**Additional context** -Add any other context or screenshots about the feature request here. +**How To** + +- Login Jira issue board https://issues.redhat.com +- Click "Create" on top +- Choose: "Pojrect 'Red Hat Openshift Data Science'" +- Issue Type: + - if it is a bug, choose "Bug" + - if it is a new feature requirement, choose "Feature" + - if it is an enhancement work, choose "Task" +- Fill in "Summary" with a clear and concise description of what the ticket is. +- Add "Description" with detail information, see below: + - Describe the bug*** + - on which branch, bug is observed: + - has it worked before/ in which version it starts breaking: + - etc + - Steps to reproduce the behavior if it is a "Bug" type: + 1. Go to '...' + 2. Click on '....' + 3. Scroll down to '....' + 4. See error + - Expected behavior: a clear and concise description of what you expect to happen. + - Additional context: Add any other context about the ticket here. +- Choose: "Components/s: 'Platform'" +- Attachment: if applicable, upload screenshots to help explain more. + +**Troubleshooting** + +- If you do not have Red Hat account, you will need to create one for the first time to log in to the Jira issue board. +- If you are unsure about certain fields when creating an issue ticket, you can leave them blank. +- If you encounter any blocker despite your efforts, feel free to use GitHub Issue. We will assist you in mirroring GitHub issues to the issue board. Please note that this approach may take longer than creating a Jira ticket directly in the issue board. \ No newline at end of file diff --git a/.github/workflows/auto_add_issues.yaml b/.github/workflows/auto_add_issues.yaml deleted file mode 100644 index 8ad02516ca7..00000000000 --- a/.github/workflows/auto_add_issues.yaml +++ /dev/null @@ -1,24 +0,0 @@ -name: Auto Add Issues to Tracking boards -on: - issues: - types: - - opened -jobs: - add-to-project: - name: Add issue to projects - runs-on: ubuntu-latest - steps: - - name: Generate github-app token - id: app-token - uses: getsentry/action-github-app-token@v2 - with: - app_id: ${{ secrets.DEVOPS_APP_ID }} - private_key: ${{ secrets.DEVOPS_APP_PRIVATE_KEY }} - - uses: actions/add-to-project@v0.5.0 - with: - project-url: https://github.com/orgs/opendatahub-io/projects/40 - github-token: ${{ steps.app-token.outputs.token }} - - uses: actions/add-to-project@v0.5.0 - with: - project-url: https://github.com/orgs/opendatahub-io/projects/45 - github-token: ${{ steps.app-token.outputs.token }} From 4bccb10382ec8eed11dcffd0284d8ef02a4d565f Mon Sep 17 00:00:00 2001 From: Wen Zhou Date: Mon, 5 Feb 2024 09:55:15 +0100 Subject: [PATCH 2/3] Update .github/ISSUE_TEMPLATE/feature_request.md Co-authored-by: Ajay Jaganathan <36824134+AjayJagan@users.noreply.github.com> --- .github/ISSUE_TEMPLATE/feature_request.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/ISSUE_TEMPLATE/feature_request.md b/.github/ISSUE_TEMPLATE/feature_request.md index 3ec4d458d19..faf794e91c8 100644 --- a/.github/ISSUE_TEMPLATE/feature_request.md +++ b/.github/ISSUE_TEMPLATE/feature_request.md @@ -15,7 +15,7 @@ All previous issues from GitHub have been seamlessly migrated to the issue board - Login Jira issue board https://issues.redhat.com - Click "Create" on top -- Choose: "Pojrect 'Red Hat Openshift Data Science'" +- Choose: "Project 'Red Hat Openshift Data Science'" - Issue Type: - if it is a bug, choose "Bug" - if it is a new feature requirement, choose "Feature" From 129debc0c2b241403f854ed94a49960f970f20a1 Mon Sep 17 00:00:00 2001 From: Wen Zhou Date: Mon, 5 Feb 2024 09:55:21 +0100 Subject: [PATCH 3/3] Update .github/ISSUE_TEMPLATE/bug_report.md Co-authored-by: Ajay Jaganathan <36824134+AjayJagan@users.noreply.github.com> --- .github/ISSUE_TEMPLATE/bug_report.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/ISSUE_TEMPLATE/bug_report.md b/.github/ISSUE_TEMPLATE/bug_report.md index 91e16ba2fc3..6422137f185 100644 --- a/.github/ISSUE_TEMPLATE/bug_report.md +++ b/.github/ISSUE_TEMPLATE/bug_report.md @@ -1,5 +1,5 @@ --- -name: End supporting for v1 +name: End support for v1 about: How To labels: bug, v1 ---