Skip to content
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

Add issue forms #5490

Merged
merged 21 commits into from
Jun 14, 2022
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
Show all changes
21 commits
Select commit Hold shift + click to select a range
c3aca3b
Add issue forms
eddumelendez Jun 13, 2022
317340b
Update .github/ISSUE_TEMPLATE/bug_report.yaml
eddumelendez Jun 14, 2022
7f11a91
Update .github/ISSUE_TEMPLATE/bug_report.yaml
eddumelendez Jun 14, 2022
0661abe
Update .github/ISSUE_TEMPLATE/bug_report.yaml
eddumelendez Jun 14, 2022
c76afbf
Update .github/ISSUE_TEMPLATE/bug_report.yaml
eddumelendez Jun 14, 2022
a4fbe4a
Update .github/ISSUE_TEMPLATE/bug_report.yaml
eddumelendez Jun 14, 2022
16efaba
Update .github/ISSUE_TEMPLATE/bug_report.yaml
eddumelendez Jun 14, 2022
d8e180c
Update .github/ISSUE_TEMPLATE/feature.yaml
eddumelendez Jun 14, 2022
dd452ab
Update .github/ISSUE_TEMPLATE/feature.yaml
eddumelendez Jun 14, 2022
acb0004
Update .github/ISSUE_TEMPLATE/feature.yaml
eddumelendez Jun 14, 2022
153307d
Update .github/ISSUE_TEMPLATE/feature.yaml
eddumelendez Jun 14, 2022
999d926
Update .github/ISSUE_TEMPLATE/feature.yaml
eddumelendez Jun 14, 2022
db9b057
Update .github/ISSUE_TEMPLATE/feature.yaml
eddumelendez Jun 14, 2022
30b4ba2
Update .github/ISSUE_TEMPLATE/bug_report.yaml
eddumelendez Jun 14, 2022
cc4d029
Update .github/ISSUE_TEMPLATE/enhancement.yaml
eddumelendez Jun 14, 2022
f9915b1
Update .github/ISSUE_TEMPLATE/bug_report.yaml
eddumelendez Jun 14, 2022
dbef8bc
Update .github/ISSUE_TEMPLATE/enhancement.yaml
eddumelendez Jun 14, 2022
f0f50b0
Update .github/ISSUE_TEMPLATE/enhancement.yaml
eddumelendez Jun 14, 2022
9f98321
Update .github/ISSUE_TEMPLATE/feature.yaml
eddumelendez Jun 14, 2022
bc42594
Merge branch 'master' into issue_forms
eddumelendez Jun 14, 2022
a7a4a6d
Merge branch 'master' into issue_forms
eddumelendez Jun 14, 2022
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
96 changes: 96 additions & 0 deletions .github/ISSUE_TEMPLATE/bug_report.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,96 @@
name: Bug Report
description: File a bug report
title: "[Bug]: "
labels: ["type/bug"]
body:
- type: markdown
attributes:
value: |
Thanks for taking the time to fill out this bug report!
- type: dropdown
id: module
attributes:
label: Module
description: Which testcontainers module are you using?
eddumelendez marked this conversation as resolved.
Show resolved Hide resolved
options:
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I think for now we can hardcode the modules, but eventually, we probably want to automate or semi-automate this.

- Core
- Azure
- Cassandra
- Clickhouse
- Couchbase
- DB2
- Dynalite
- Elasticsearch
- GCloud
- HiveMQ
- InfluxDB
- K3S
- Kafka
- LocalStack
- MariaDB
- MockServer
- MongoDB
- MSSQLServer
- MySQL
- Neo4j
- NGINX
- Oracle-XE
- OrientDB
- PostgreSQL
- Presto
- Pulsar
- RabbitMQ
- Selenium
- Solr
- ToxiProxy
- Trino
- Vault
validations:
required: true
- type: input
id: tc-version
attributes:
label: Testcontainers version
description: Which testcontainers version are you using?
eddumelendez marked this conversation as resolved.
Show resolved Hide resolved
placeholder: ex. 1.17.2
validations:
required: true
- type: dropdown
id: latest-version
attributes:
label: Testcontainers latest version
eddumelendez marked this conversation as resolved.
Show resolved Hide resolved
description: If you are not using the latest version, can you update and reproduce it? still happening?
eddumelendez marked this conversation as resolved.
Show resolved Hide resolved
options:
- 'Yes'
- 'No'
validations:
required: true
- type: textarea
id: docker-version
attributes:
label: Docker version
description: Run `docker version`, copy and paste the output here
eddumelendez marked this conversation as resolved.
Show resolved Hide resolved
render: markdown
eddumelendez marked this conversation as resolved.
Show resolved Hide resolved
validations:
required: true
- type: textarea
id: what-happened
attributes:
label: What happened?
description: Provide the context and the expected result.
validations:
required: true
- type: textarea
id: logs
attributes:
label: Relevant log output
description: Please copy and paste any relevant log output. This will be automatically formatted into code, so no need for backticks.
eddumelendez marked this conversation as resolved.
Show resolved Hide resolved
render: shell
- type: textarea
id: additional-information
attributes:
label: Additional Information
description: |
Any links or references to have more context about the issue.

Tip: You can attach a minimal sample project to reproduce the issue or log files by clicking this area to highlight it and then dragging files in.
eddumelendez marked this conversation as resolved.
Show resolved Hide resolved
5 changes: 5 additions & 0 deletions .github/ISSUE_TEMPLATE/config.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
blank_issues_enabled: false
contact_links:
- name: Need help or have a question?
url: https://slack.testcontainers.org/
about: Visit our slack channel.
56 changes: 56 additions & 0 deletions .github/ISSUE_TEMPLATE/enhancement.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,56 @@
name: Enhancement
description: File a enhancement
eddumelendez marked this conversation as resolved.
Show resolved Hide resolved
title: "[Enhancement]: "
labels: ["type/enhancement"]
body:
- type: markdown
attributes:
value: |
Please provide the following information
- type: dropdown
id: module
attributes:
label: Module
description: Which testcontainers module applies the enhancement proposal?
eddumelendez marked this conversation as resolved.
Show resolved Hide resolved
options:
- Core
- Azure
- Cassandra
- Clickhouse
- Couchbase
- DB2
- Dynalite
- Elasticsearch
- GCloud
- HiveMQ
- InfluxDB
- K3S
- Kafka
- LocalStack
- MariaDB
- MockServer
- MongoDB
- MSSQLServer
- MySQL
- Neo4j
- NGINX
- Oracle-XE
- OrientDB
- PostgreSQL
- Presto
- Pulsar
- RabbitMQ
- Selenium
- Solr
- ToxiProxy
- Trino
- Vault
validations:
required: true
- type: textarea
id: proposal
attributes:
label: Proposal
description: Also tell us, what did you expect to happen?
eddumelendez marked this conversation as resolved.
Show resolved Hide resolved
validations:
required: true
85 changes: 85 additions & 0 deletions .github/ISSUE_TEMPLATE/feature.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,85 @@
name: Feature
description: File a feature
eddumelendez marked this conversation as resolved.
Show resolved Hide resolved
title: "[Feature]: "
labels: ["type/feature"]
body:
- type: markdown
attributes:
value: |
Please provide the following information
- type: dropdown
id: module
attributes:
label: Module
description: Is this feature related to any of the existing modules?
options:
- Core
- Azure
- Cassandra
- Clickhouse
- Couchbase
- DB2
- Dynalite
- Elasticsearch
- GCloud
- HiveMQ
- InfluxDB
- K3S
- Kafka
- LocalStack
- MariaDB
- MockServer
- MongoDB
- MSSQLServer
- MySQL
- Neo4j
- NGINX
- Oracle-XE
- OrientDB
- PostgreSQL
- Presto
- Pulsar
- RabbitMQ
- Selenium
- Solr
- ToxiProxy
- Trino
- Vault
eddumelendez marked this conversation as resolved.
Show resolved Hide resolved
- type: textarea
id: problem
attributes:
label: Problem
description: Is your feature related to a problem? Please describe
eddumelendez marked this conversation as resolved.
Show resolved Hide resolved
validations:
required: true
- type: textarea
id: solution
attributes:
label: Solution
description: What's the proposal solution for this feature?
eddumelendez marked this conversation as resolved.
Show resolved Hide resolved
validations:
required: true
- type: textarea
id: benefit
attributes:
label: Benefit
description: What's the benefit by implementing it in the project?
eddumelendez marked this conversation as resolved.
Show resolved Hide resolved
validations:
required: true
- type: textarea
id: alternatives
attributes:
label: Benefit
description: Are there other alternatives? Please describe
eddumelendez marked this conversation as resolved.
Show resolved Hide resolved
validations:
required: true
- type: dropdown
id: contribute
attributes:
label: Would you like to help contributing this feature?
description: Which testcontainers module are you using?
eddumelendez marked this conversation as resolved.
Show resolved Hide resolved
options:
- 'Yes'
- 'No'
validations:
required: true