-
Notifications
You must be signed in to change notification settings - Fork 425
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'main' into fix-str-copy
- Loading branch information
Showing
122 changed files
with
3,123 additions
and
787 deletions.
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
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
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 |
---|---|---|
|
@@ -4,3 +4,5 @@ notify_outdated_conda: False | |
changeps1: False | ||
always_yes: True | ||
local_repodata_ttl: 7200 | ||
channels: | ||
- defaults |
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,54 @@ | ||
conda/governance: | ||
# [required] community files | ||
- CODE_OF_CONDUCT.md | ||
|
||
conda/conda: | ||
# issue template details for templates/issues/bug.yml template | ||
- .github/template-files/templates/issue_template_details.yml | ||
|
||
conda/infrastructure: | ||
# [required] general workflows | ||
- .github/workflows/cla.yml | ||
- .github/workflows/update.yml | ||
|
||
# [optional] to include repo in https://github.com/orgs/conda/projects/2 | ||
- .github/workflows/issues.yml | ||
- .github/workflows/labels.yml | ||
- .github/workflows/project.yml | ||
|
||
# [optional] stale bot workflows | ||
- .github/workflows/stale.yml | ||
- .github/workflows/lock.yml | ||
|
||
# [optional] general processes for the conda org | ||
- src: templates/HOW_WE_USE_GITHUB.md | ||
dst: HOW_WE_USE_GITHUB.md | ||
|
||
# [optional] standard issue templates | ||
- src: templates/issues/bug.yml | ||
dst: .github/ISSUE_TEMPLATE/0_bug.yml | ||
|
||
- src: templates/issues/feature.yml | ||
dst: .github/ISSUE_TEMPLATE/1_feature.yml | ||
|
||
- src: templates/issues/documentation.yml | ||
dst: .github/ISSUE_TEMPLATE/2_documentation.yml | ||
|
||
- src: templates/issues/epic.yml | ||
dst: .github/ISSUE_TEMPLATE/epic.yml | ||
|
||
# [optional] standard PR template | ||
- src: templates/pull_requests/news_tests_docs.md | ||
dst: .github/template-files/templates/pull_request_template_details.md | ||
- src: templates/pull_requests/base.md | ||
dst: .github/PULL_REQUEST_TEMPLATE.md | ||
|
||
# [optional] rever release files | ||
- src: templates/releases/RELEASE.md | ||
dst: RELEASE.md | ||
with: | ||
placeholder: YY.M | ||
- src: templates/releases/rever.xsh | ||
dst: rever.xsh | ||
- src: templates/releases/TEMPLATE | ||
dst: news/TEMPLATE |
39 changes: 39 additions & 0 deletions
39
.github/template-files/templates/issue_template_details.yml
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,39 @@ | ||
- type: textarea | ||
id: info | ||
attributes: | ||
label: Conda Info | ||
description: | | ||
Let's collect some basic information about your conda install. | ||
Please run the following command from your command line and paste the output below. | ||
```bash | ||
conda info | ||
``` | ||
render: shell | ||
- type: textarea | ||
id: config | ||
attributes: | ||
label: Conda Config | ||
description: | | ||
Let's collect any customizations you may have for your conda install. | ||
Please run the following command from your command line and paste the output below. | ||
```bash | ||
conda config --show-sources | ||
``` | ||
render: shell | ||
- type: textarea | ||
id: list | ||
attributes: | ||
label: Conda list | ||
description: | | ||
The packages installed into your environment can offer clues as to the problem you are facing. | ||
Please activate the environment within which you are encountering this bug, run the following command from your command line, and paste the output below. | ||
```bash | ||
conda list --show-channel-urls | ||
``` | ||
render: shell |
15 changes: 15 additions & 0 deletions
15
.github/template-files/templates/pull_request_template_details.md
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 @@ | ||
### Checklist - did you ... | ||
|
||
<!-- If any of the following items aren't relevant to your contribution, | ||
please either tick them or use ~strikethrough~ so we know you've gone | ||
through the checklist. --> | ||
|
||
- [ ] Add a file to the `news` directory ([using the template](https://github.com/conda/conda-build/blob/main/news/TEMPLATE)) for the next release's release notes? | ||
<!-- All "significant" changes should get an entry: | ||
- user-facing changes or enhancements | ||
- bug fixes | ||
- deprecations | ||
- documentation updates | ||
- etc --> | ||
- [ ] Add / update necessary tests? | ||
- [ ] Add / update outdated documentation? |
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
Oops, something went wrong.