-
Notifications
You must be signed in to change notification settings - Fork 3.2k
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
docs: Updates issue and PR templates. #1848
Merged
Merged
Changes from all commits
Commits
Show all changes
3 commits
Select commit
Hold shift + click to select a range
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 was deleted.
Oops, something went wrong.
This file contains 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,6 @@ | ||
Checklist: | ||
|
||
* [ ] Either (a) I've created an [enhancement proposal](https://github.com/argoproj/argo/issues/new/choose) and discussed it with the community, (b) this is a bug fix, or (c) this does not need to be in the release notes. | ||
* [ ] The title of the PR is (a) [conventional](https://www.conventionalcommits.org/en/v1.0.0/), (b) states what changed, and (c) suffixes the related issues number. E.g. `"fix(controller): Updates such and such. Fixes #1234"`. Why? for the release notes. | ||
* [ ] Optional. I've added My organization is added to the README. | ||
* [ ] I've signed the CLA and required builds are green. |
This file contains 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,55 @@ | ||
--- | ||
name: Bug report | ||
about: Create a report to help us improve | ||
title: '' | ||
labels: 'bug' | ||
assignees: '' | ||
--- | ||
Checklist: | ||
|
||
* [ ] I've included the version. | ||
* [ ] I've included reproduction steps. | ||
* [ ] I've included the workflow YAML. | ||
* [ ] I've included the logs. | ||
|
||
**What happened**: | ||
|
||
**What you expected to happen**: | ||
|
||
**How to reproduce it (as minimally and precisely as possible)**: | ||
|
||
**Anything else we need to know?**: | ||
|
||
**Environment**: | ||
- Argo version: | ||
``` | ||
$ argo version | ||
``` | ||
- Kubernetes version : | ||
``` | ||
$ kubectl version -o yaml | ||
``` | ||
|
||
**Other debugging information (if applicable)**: | ||
- workflow result: | ||
``` | ||
argo get <workflowname> | ||
``` | ||
- executor logs: | ||
``` | ||
kubectl logs <failedpodname> -c init | ||
kubectl logs <failedpodname> -c wait | ||
``` | ||
- workflow-controller logs: | ||
``` | ||
kubectl logs -n argo $(kubectl get pods -l app=workflow-controller -n argo -o name) | ||
``` | ||
|
||
**Logs** | ||
|
||
``` | ||
argo get <workflowname> | ||
kubectl logs <failedpodname> -c init | ||
kubectl logs <failedpodname> -c wait | ||
kubectl logs -n argo $(kubectl get pods -l app=workflow-controller -n argo -o name) | ||
``` |
This file contains 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,18 @@ | ||
--- | ||
name: Enhancement proposal | ||
about: Propose an enhancement for this project | ||
title: '' | ||
labels: 'enhancement' | ||
assignees: '' | ||
--- | ||
# Summary | ||
|
||
What change you think needs making. | ||
|
||
# Motivation | ||
|
||
Please give examples of your use case, e.g. when would you use this. | ||
|
||
# Proposal | ||
|
||
How do you think this should be implemented? |
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.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
It might be worth adding a note here that including a sample Workflow – if applicable – is the best way to show how to reproduce. Users sometimes describe behavior and don't include a workflow.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I've added a checklist. People like to fill out checklists it seems.