Skip to content

Commit b2d9c74

Browse files
πŸ€– Update infrastructure file(s) (#252)
* πŸ€– updated file(s) * Re-add template details * πŸ€– updated file(s) * Remove unneeded template file to pull from conda * πŸ€– updated file(s) --------- Co-authored-by: Marco Esters <mesters@anaconda.com>
1 parent dbac04b commit b2d9c74

13 files changed

+401
-37
lines changed

β€Ž.github/ISSUE_TEMPLATE/0_bug.yml

+4-1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
# edit this in https://github.com/conda/infrastructure
2+
13
name: Bug Report
24
description: Create a bug report.
35
labels:
@@ -13,7 +15,7 @@ body:
1315
1416
Since there are already a lot of open issues, please also take a moment to search existing ones to see if your bug has already been reported. If you find something related, please upvote that issue and provide additional details as necessary.
1517
16-
πŸ’ Thank you for helping to make Conda better. We would be unable to improve Conda without our community!
18+
πŸ’ Thank you for helping to make `conda/menuinst` better. We would be unable to improve `conda/menuinst` without our community!
1719
- type: checkboxes
1820
id: checks
1921
attributes:
@@ -70,6 +72,7 @@ body:
7072
conda list --show-channel-urls
7173
```
7274
render: shell
75+
7376
- type: textarea
7477
id: context
7578
attributes:

β€Ž.github/ISSUE_TEMPLATE/1_feature.yml

+3-1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
# edit this in https://github.com/conda/infrastructure
2+
13
name: Feature Request
24
description: Create a feature request.
35
labels:
@@ -13,7 +15,7 @@ body:
1315
1416
Since there are already a lot of open issues, please also take a moment to search existing ones to see if your feature request has already been submitted. If you find something related, please upvote that issue and provide additional details as necessary.
1517
16-
πŸ’ Thank you for helping to make Conda better. We would be unable to improve Conda without our community!
18+
πŸ’ Thank you for helping to make `conda/menuinst` better. We would be unable to improve `conda/menuinst` without our community!
1719
- type: checkboxes
1820
id: checks
1921
attributes:

β€Ž.github/ISSUE_TEMPLATE/2_documentation.yml

+2
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
# edit this in https://github.com/conda/infrastructure
2+
13
name: Documentation
24
description: Create a documentation related issue.
35
labels:

β€Ž.github/ISSUE_TEMPLATE/epic.yml

+4-1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
# edit this in https://github.com/conda/infrastructure
2+
13
name: Epic
24
description: A collection of related tickets.
35
labels:
@@ -15,7 +17,8 @@ body:
1517
1618
Since there are already a lot of open issues, please also take a moment to search existing ones to see if a similar epic has already been opened. If you find something related, please upvote that issue and provide additional details as necessary.
1719
18-
πŸ’ Thank you for helping to make Conda better. We would be unable to improve Conda without our community!
20+
πŸ’ Thank you for helping to make `conda/menuinst` better. We would be unable to improve `conda/menuinst` without our community!
21+
1922
- type: checkboxes
2023
id: checks
2124
attributes:

β€Ž.github/PULL_REQUEST_TEMPLATE.md

+7-5
Original file line numberDiff line numberDiff line change
@@ -11,18 +11,20 @@
1111
### Checklist - did you ...
1212

1313
<!-- If any of the following items aren't relevant to your contribution,
14-
please still tick them so we know you've gone through the checklist. -->
14+
please either tick them or use ~strikethrough~ so we know you've gone
15+
through the checklist. -->
1516

16-
- [ ] Add a file to the `news` directory ([using the template](../blob/main/news/TEMPLATE)) for the next release's release notes?
17+
- [ ] Add a file to the `news` directory ([using the template](https://github.com/conda/menuinst/blob/main/news/TEMPLATE)) for the next release's release notes?
1718
<!-- All "significant" changes should get an entry:
1819
- user-facing changes or enhancements
1920
- bug fixes
2021
- deprecations
2122
- documentation updates
22-
- other changes -->
23+
- etc -->
2324
- [ ] Add / update necessary tests?
2425
- [ ] Add / update outdated documentation?
2526

27+
2628
<!-- Just as a reminder, everyone in all conda org spaces (including PRs)
2729
must follow the Conda Org Code of Conduct (link below).
2830
@@ -31,5 +33,5 @@
3133
let us know!
3234
3335
Helpful links:
34-
- Conda Org COC: https://github.com/conda-incubator/governance/blob/main/CODE_OF_CONDUCT.md
35-
- Contributing docs: ../blob/main/CONTRIBUTING.md -->
36+
- Conda Org COC: https://github.com/conda/menuinst/blob/main/CODE_OF_CONDUCT.md
37+
- Contributing docs: https://github.com/conda/menuinst/blob/main/CONTRIBUTING.md -->

β€Ž.github/template-files/config.yml

+4
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,10 @@ conda/governance:
22
# [required] community files
33
- CODE_OF_CONDUCT.md
44

5+
conda/conda:
6+
# issue template details for templates/issues/bug.yml template
7+
- .github/template-files/templates/issue_template_details.yml
8+
59
conda/infrastructure:
610
# [required] general workflows
711
- .github/workflows/cla.yml
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,39 @@
1+
- type: textarea
2+
id: info
3+
attributes:
4+
label: Conda Info
5+
description: |
6+
Let's collect some basic information about your conda install.
7+
8+
Please run the following command from your command line and paste the output below.
9+
10+
```bash
11+
conda info
12+
```
13+
render: shell
14+
- type: textarea
15+
id: config
16+
attributes:
17+
label: Conda Config
18+
description: |
19+
Let's collect any customizations you may have for your conda install.
20+
21+
Please run the following command from your command line and paste the output below.
22+
23+
```bash
24+
conda config --show-sources
25+
```
26+
render: shell
27+
- type: textarea
28+
id: list
29+
attributes:
30+
label: Conda list
31+
description: |
32+
The packages installed into your environment can offer clues as to the problem you are facing.
33+
34+
Please activate the environment within which you are encountering this bug, run the following command from your command line, and paste the output below.
35+
36+
```bash
37+
conda list --show-channel-urls
38+
```
39+
render: shell
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
### Checklist - did you ...
2+
3+
<!-- If any of the following items aren't relevant to your contribution,
4+
please either tick them or use ~strikethrough~ so we know you've gone
5+
through the checklist. -->
6+
7+
- [ ] Add a file to the `news` directory ([using the template](https://github.com/conda/menuinst/blob/main/news/TEMPLATE)) for the next release's release notes?
8+
<!-- All "significant" changes should get an entry:
9+
- user-facing changes or enhancements
10+
- bug fixes
11+
- deprecations
12+
- documentation updates
13+
- etc -->
14+
- [ ] Add / update necessary tests?
15+
- [ ] Add / update outdated documentation?

β€Ž.github/workflows/lock.yml

+1-2
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ jobs:
2020
- uses: dessant/lock-threads@1bf7ec25051fe7c00bdd17e6a7cf3d7bfb7dc771 # v5.0.1
2121
with:
2222
# Number of days of inactivity before a closed issue is locked
23-
issue-inactive-days: 365
23+
issue-inactive-days: 180
2424
# Do not lock issues created before a given timestamp, value must follow ISO 8601
2525
exclude-issue-created-before: ''
2626
# Do not lock issues with these labels, value must be a comma separated list of labels or ''
@@ -29,7 +29,6 @@ jobs:
2929
add-issue-labels: locked
3030
# Reason for locking an issue, value must be one of resolved, off-topic, too heated, spam or ''
3131
issue-lock-reason: resolved
32-
3332
# Number of days of inactivity before a closed pull request is locked
3433
pr-inactive-days: 365
3534
# Do not lock pull requests created before a given timestamp, value must follow ISO 8601

β€Ž.github/workflows/update.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -80,7 +80,7 @@ jobs:
8080
- if: github.event.comment.body != '@conda-bot render'
8181
id: create
8282
# no-op if no commits were made
83-
uses: peter-evans/create-pull-request@c5a7806660adbe173f04e3e038b0ccdcd758773c # v6.1.0
83+
uses: peter-evans/create-pull-request@8867c4aba1b742c39f8d0ba35429c2dfa4b6cb20 # v7.0.1
8484
with:
8585
push-to-fork: ${{ env.FORK }}
8686
token: ${{ secrets.SYNC_TOKEN }}

0 commit comments

Comments
Β (0)