-
-
Notifications
You must be signed in to change notification settings - Fork 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
chore: migrate to docker org #40
Draft
crazy-max
wants to merge
4
commits into
master
Choose a base branch
from
migrate
base: master
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.
+164
−89
Draft
Changes from all commits
Commits
Show all changes
4 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,3 @@ | ||
# Code of conduct | ||
|
||
- [Moby community guidelines](https://github.com/moby/moby/blob/master/CONTRIBUTING.md#moby-community-guidelines) |
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 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,102 @@ | ||
# https://docs.github.com/en/communities/using-templates-to-encourage-useful-issues-and-pull-requests/syntax-for-githubs-form-schema | ||
name: Bug Report | ||
description: Report a 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]). | ||
Before submitting a bug report, check out the [Troubleshooting doc](https://github.com/docker/setup-docker-action/blob/master/TROUBLESHOOTING.md). | ||
|
||
- type: checkboxes | ||
attributes: | ||
label: Contributing guidelines | ||
description: > | ||
Make sure you've read the contributing guidelines before proceeding. | ||
options: | ||
- label: I've read the [contributing guidelines](https://github.com/docker/setup-docker-action/blob/master/.github/CONTRIBUTING.md) and wholeheartedly agree | ||
required: true | ||
|
||
- type: checkboxes | ||
attributes: | ||
label: "I've found a bug, and:" | ||
description: | | ||
Make sure that your request fulfills all of the following requirements. | ||
If one requirement cannot be satisfied, explain in detail why. | ||
options: | ||
- label: The documentation does not mention anything about my problem | ||
- label: There are no open or closed issues that are related to my problem | ||
|
||
- type: textarea | ||
attributes: | ||
label: Description | ||
description: > | ||
Provide a brief description of the bug in 1-2 sentences. | ||
validations: | ||
required: true | ||
|
||
- type: textarea | ||
attributes: | ||
label: Expected behaviour | ||
description: > | ||
Describe precisely what you'd expect to happen. | ||
validations: | ||
required: true | ||
|
||
- type: textarea | ||
attributes: | ||
label: Actual behaviour | ||
description: > | ||
Describe precisely what is actually happening. | ||
validations: | ||
required: true | ||
|
||
- type: input | ||
attributes: | ||
label: Repository URL | ||
description: > | ||
Enter the URL of the repository where you are experiencing the | ||
issue. If your repository is private, provide a link to a minimal | ||
repository that reproduces the issue. | ||
|
||
- type: input | ||
attributes: | ||
label: Workflow run URL | ||
description: > | ||
Enter the URL of the GitHub Action workflow run if public (e.g. | ||
`https://github.com/<user>/<repo>/actions/runs/<id>`) | ||
|
||
- type: textarea | ||
attributes: | ||
label: YAML workflow | ||
description: | | ||
Provide the YAML of the workflow that's causing the issue. | ||
Make sure to remove any sensitive information. | ||
render: yaml | ||
validations: | ||
required: true | ||
|
||
- type: textarea | ||
attributes: | ||
label: Workflow logs | ||
description: > | ||
[Attach](https://docs.github.com/en/get-started/writing-on-github/working-with-advanced-formatting/attaching-files) | ||
the [log file of your workflow run](https://docs.github.com/en/actions/managing-workflow-runs/using-workflow-run-logs#downloading-logs) | ||
and make sure to remove any sensitive information. | ||
|
||
- type: textarea | ||
attributes: | ||
label: Docker daemon logs | ||
description: > | ||
If applicable, provide the Docker logs available in post step. | ||
render: text | ||
|
||
- type: textarea | ||
attributes: | ||
label: Additional info | ||
description: | | ||
Provide any additional information that could be useful. |
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 @@ | ||
# 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: Questions and Discussions | ||
url: https://github.com/docker/setup-docker-action/discussions/new | ||
about: Use Github Discussions to ask questions and/or open discussion topics. |
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/syntax-for-githubs-form-schema | ||
name: Feature request | ||
description: Missing functionality? Come tell us about it! | ||
labels: | ||
- kind/enhancement | ||
- 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
# Reporting security issues | ||
|
||
The project maintainers take security seriously. If you discover a security | ||
issue, please bring it to their attention right away! | ||
|
||
**Please _DO NOT_ file a public issue**, instead send your report privately to | ||
[[email protected]](mailto:[email protected]). | ||
|
||
Security reports are greatly appreciated, and we will publicly thank you for it. | ||
We also like to send gifts—if you'd like Docker swag, make sure to let | ||
us know. We currently do not offer a paid security bounty program, but are not | ||
ruling it out in the future. |
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
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 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 |
---|---|---|
|
@@ -15,14 +15,14 @@ | |
}, | ||
"repository": { | ||
"type": "git", | ||
"url": "git+https://github.com/crazy-max/ghaction-setup-docker.git" | ||
"url": "git+https://github.com/docker/setup-docker-action.git" | ||
}, | ||
"keywords": [ | ||
"actions", | ||
"docker", | ||
"engine" | ||
], | ||
"author": "CrazyMax", | ||
"author": "Docker Inc.", | ||
"license": "Apache-2.0", | ||
"packageManager": "[email protected]", | ||
"dependencies": { | ||
|
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 know the plan was to phase out the "CE" (and "Community Edition") term, so wondering if we should update these for "Docker Engine" (and "Docker CLI"), but honestly, don't know who's deciding on these things nowadays
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'd find it much easier/preferred to keep the CE as people know what it is and it's proliferated everywhere. Community Edition and Desktop is not the worst thing ever, and we use Engine as a more Kleenex term.