-
Notifications
You must be signed in to change notification settings - Fork 1.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
Replace legacy issue template with revised issue forms #5672
Merged
Merged
Changes from all commits
Commits
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 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,76 @@ | ||
name: Bug Report | ||
description: File a bug report. | ||
type: "bug" | ||
labels: | ||
- status/triage | ||
body: | ||
- type: markdown | ||
attributes: | ||
value: | | ||
**Thank you for taking the time to report a bug!** | ||
If this is a security issue please report it to the [Docker Security team](mailto:[email protected]), see [SECURITY.md](https://github.com/moby/buildkit/blob/master/.github/SECURITY.md) for more information. | ||
|
||
- type: checkboxes | ||
attributes: | ||
label: Contributing guidelines and issue reporting guide | ||
description: | | ||
Please read the contributing guidelines and issue reporting guide before proceeding. | ||
options: | ||
- label: I've read the [contributing guidelines](https://github.com/moby/buildkit/blob/master/.github/CONTRIBUTING.md) and wholeheartedly agree. I've also read the [issue reporting guide](https://github.com/moby/buildkit/blob/master/.github/issue_reporting_guide.md). | ||
required: true | ||
|
||
- type: checkboxes | ||
attributes: | ||
label: Well-formed report checklist | ||
description: | | ||
Make sure that your request fulfills all of the following requirements. | ||
If one requirement cannot be satisfied, explain in detail why. | ||
options: | ||
- label: I have found a bug that the documentation does not mention anything about my problem | ||
required: true | ||
- label: I have found a bug that there are no open or closed issues that are related to my problem | ||
required: true | ||
- label: I have provided version/information about my environment and done my best to provide a reproducer | ||
required: true | ||
|
||
- type: textarea | ||
attributes: | ||
label: Description of bug | ||
description: | | ||
Please provide a description of the bug, reproduction steps and version information. | ||
|
||
<details> | ||
<summary>How to collect version information</summary> | ||
|
||
Using `buildctl` and `buildkitd` to get version information | ||
```bash | ||
buildctl --version && buildkitd version | ||
``` | ||
|
||
Using `docker` to get BuildKit information | ||
```bash | ||
docker buildx version && docker buildx inspect | ||
``` | ||
|
||
Add Docker Engine information (if available) | ||
```bash | ||
docker version && docker info | ||
``` | ||
|
||
</details> | ||
value: | | ||
## Bug description | ||
|
||
A description of the bug, observed, and expected behaviour. | ||
|
||
## Reproduction | ||
|
||
Steps to reproduce the problem. If you are using `docker build` or `docker buildx build` providing the command as well as any input files will help analysis. | ||
|
||
## Version information | ||
|
||
```bash | ||
terminal_output | ||
``` | ||
validations: | ||
required: true |
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,15 @@ | ||
# https://docs.github.com/en/communities/using-templates-to-encourage-useful-issues-and-pull-requests/configuring-issue-templates-for-your-repository#configuring-the-template-chooser | ||
blank_issues_enabled: true | ||
contact_links: | ||
- name: Security and Vulnerabilities | ||
url: https://github.com/moby/buildkit/blob/master/.github/SECURITY.md | ||
about: Please report any security issues or vulnerabilities responsibly to the Docker security team. Please do not use the public issue tracker. | ||
- name: Questions and Discussions | ||
url: https://github.com/moby/buildkit/discussions/new | ||
about: Use Github Discussions to ask questions and/or open discussion topics. | ||
- name: Documentation | ||
url: https://github.com/moby/buildkit/tree/master/docs | ||
about: Read the documentation. | ||
- name: Join the Docker Community on Slack | ||
url: http://dockr.ly/comm-slack | ||
about: Join the Docker Community on Slack and head to the buildkit channel. |
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,14 @@ | ||
name: Feature or enhancement request | ||
description: Missing functionality? Come tell us about it! | ||
type: "enhancement" | ||
labels: | ||
- status/triage | ||
|
||
body: | ||
- type: textarea | ||
id: description | ||
attributes: | ||
label: Description | ||
description: What is the feature you want to see? | ||
validations: | ||
required: true |
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
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.
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.
I think in moby/moby we also added suggestions for reporting security issues (to make it more prominent that github is not the place for that)
https://github.com/moby/moby/blob/master/.github/ISSUE_TEMPLATE/config.yml#L3
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.
Great suggestion! Adding.
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.
@thompson-shaun Hum it seems we now have duplicated security blocks because of this: https://github.com/moby/buildkit/issues/new/choose
We should remove this one so only the dynamic one is shown, similar to what we have on Buildx repo: https://github.com/docker/buildx/issues/new/choose