-
Notifications
You must be signed in to change notification settings - Fork 1
Feat(governance): Added PR & ISSUES templates #3
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Open
jpmewenemesse
wants to merge
6
commits into
OKDP:main
Choose a base branch
from
jpmewenemesse:feat/added-PR-ISSUE-templates
base: main
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Changes from all commits
Commits
Show all changes
6 commits
Select commit
Hold shift + click to select a range
2e87bc1
feat: added feature request template and disable blank issue creation…
jpmewenemesse d42dc53
feat: added bug report template
jpmewenemesse 8fb9dce
feat: added pull request template
jpmewenemesse 9665e4b
feat: removed components selection, added additional checklist in PR …
jpmewenemesse 3ec602a
feat: replaced broken link to feature temporarly and removed CI and c…
jpmewenemesse 7751851
feat: commented feature branch reference
jpmewenemesse File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,88 @@ | ||
| name: Bug Report | ||
| description: Report a bug in an OKDP component | ||
| labels: ["bug"] | ||
| body: | ||
| - type: markdown | ||
| attributes: | ||
| value: | | ||
| > [!WARNING] | ||
| > **Security vulnerability?** Do not open a public issue. | ||
| > Please use [GitHub's private vulnerability reporting](https://docs.github.com/en/code-security/security-advisories/guidance-on-reporting-and-writing-information-about-vulnerabilities/privately-reporting-a-security-vulnerability) on the affected repository instead. | ||
|
|
||
| - type: textarea | ||
| id: description | ||
| attributes: | ||
| label: Describe the Bug | ||
| description: A clear description of what the bug is. | ||
| validations: | ||
| required: true | ||
|
|
||
| - type: textarea | ||
| id: repro | ||
| attributes: | ||
| label: Steps to Reproduce | ||
| description: List the exact steps to trigger the bug. | ||
| placeholder: | | ||
| 1. ... | ||
| 2. ... | ||
| 3. ... | ||
| validations: | ||
| required: true | ||
|
|
||
| - type: textarea | ||
| id: expected | ||
| attributes: | ||
| label: Expected Behavior | ||
| validations: | ||
| required: true | ||
|
|
||
| - type: textarea | ||
| id: actual | ||
| attributes: | ||
| label: Actual Behavior | ||
| validations: | ||
| required: true | ||
|
|
||
| - type: textarea | ||
| id: environment | ||
| attributes: | ||
| label: Environment | ||
| value: | | ||
| **Kubernetes version** | ||
| <details> | ||
|
|
||
| ```console | ||
| $ kubectl version | ||
| # paste output here | ||
| ``` | ||
|
|
||
| </details> | ||
|
|
||
| **Helm version** | ||
| <details> | ||
|
|
||
| ```console | ||
| $ helm version | ||
| # paste output here | ||
| ``` | ||
|
|
||
| </details> | ||
|
|
||
| **Chart / component version:** | ||
|
|
||
| **Cluster setup (Kind version, node count, any custom config):** | ||
| validations: | ||
| required: true | ||
|
|
||
| - type: textarea | ||
| id: logs | ||
| attributes: | ||
| label: Logs | ||
| description: Paste relevant logs here. | ||
| render: shell | ||
|
|
||
| - type: textarea | ||
| id: additional | ||
| attributes: | ||
| label: Anything else we need to know? | ||
| description: Workarounds you found, related issues, hypotheses about the root cause, or any other context that might help. |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,10 @@ | ||
| blank_issues_enabled: false | ||
|
|
||
| contact_links: | ||
| - name: GitHub Discussions | ||
| url: https://github.com/orgs/OKDP/discussions | ||
| about: Questions, ideas, and general discussions; ask here before opening an issue. | ||
|
|
||
| - name: OKDP Documentation | ||
| url: https://okdp.io | ||
| about: Check the official docs and roadmap before opening an issue. |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,38 @@ | ||
| name: Feature Request | ||
| description: Suggest a new feature or improvement | ||
| labels: ["enhancement"] | ||
| body: | ||
| - type: markdown | ||
| attributes: | ||
| value: | | ||
| > [!NOTE] | ||
| > **Proposing a significant change?** Open a [GitHub Discussion](https://github.com/orgs/OKDP/discussions) first. | ||
| > Large features benefit from community alignment before becoming a tracked issue. | ||
| - type: textarea | ||
| id: problem | ||
| attributes: | ||
| label: Problem Statement | ||
| description: What problem does this feature solve? | ||
| validations: | ||
| required: true | ||
|
|
||
| - type: textarea | ||
| id: solution | ||
| attributes: | ||
| label: Proposed Solution | ||
| description: Describe the solution you'd like. | ||
| validations: | ||
| required: true | ||
|
|
||
| - type: textarea | ||
| id: alternatives | ||
| attributes: | ||
| label: Alternatives Considered | ||
| description: Any alternative solutions you've considered. | ||
|
|
||
| - type: textarea | ||
| id: context | ||
| attributes: | ||
| label: Additional Context | ||
| description: Any other context, screenshots, or references. |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,36 @@ | ||
| <!-- | ||
| PR title must follow Conventional Commits: feat: / fix: / docs: / chore: / refactor: … | ||
| For unfinished work, open as a Draft PR. | ||
| --> | ||
|
|
||
| ## Description | ||
|
|
||
| <!-- What changed, and why? --> | ||
|
|
||
| ## Related Issue | ||
|
|
||
| Fixes # | ||
|
|
||
| ## Type of Change | ||
|
|
||
| - [ ] Bug fix | ||
| - [ ] New feature | ||
| - [ ] Documentation update | ||
| - [ ] Refactor / chore | ||
| - [ ] Breaking change | ||
|
|
||
| <!-- If breaking change, describe the impact and migration path here: --> | ||
|
|
||
| ## How to Test | ||
|
|
||
| <!-- Steps a reviewer can follow to manually verify this change --> | ||
| <!-- TODO: replace CONTRIBUTING.md feature branch link to main once merged --> | ||
|
|
||
| ## Checklist | ||
|
|
||
| <!-- - [ ] I have read [CONTRIBUTING.md](https://github.com/OKDP/.github/blob/main/CONTRIBUTING.md) --> | ||
| - [ ] I have tested my changes | ||
| - [ ] Documentation updated if needed | ||
| - [ ] If breaking change: migration path described above | ||
| - [ ] I hereby declare this contribution to be licensed under the [Apache License Version 2.0](http://www.apache.org/licenses/LICENSE-2.0). | ||
| - [ ] I hereby agree to grant [TOSIT](https://www.tosit.io/) a copyright license to use my contributions. |
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.