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

Disable workflows and add issue templates #411

Merged
merged 4 commits into from
Jan 31, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
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
2 changes: 1 addition & 1 deletion .github/ISSUE_TEMPLATE/bug-or-unexpected-behavior.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
---
name: Bug or unexpected behavior
about: Create a report to help us improve.
title: ''
title: 'Bug: '
labels: bug
assignees: ''

Expand Down
22 changes: 22 additions & 0 deletions .github/ISSUE_TEMPLATE/feature-proposal.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
---
name: Feature Proposal
about: Send a note to the tc-python team about something you would like to see changed or improved.
title: 'Feature: '
labels: '🚀 enhancement'
assignees: ''

---

<!-- feel free to remove any irrelevant section(s) below -->

**What are you trying to do?**

Describe the intention of the enhancement.

**Why should it be done this way?**

Describe the motivation of the enhancement.

**Other references:**

Include any other relevant reading material about the enhancement.
35 changes: 35 additions & 0 deletions .github/ISSUE_TEMPLATE/question.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,35 @@
---
name: Question
about: Ask a question about how to use this library.
title: 'Question: '
labels: '📖 documentation'
assignees: ''

---

<!-- feel free to remove any irrelevant section(s) below -->

**What are you trying to do?**

Ask your question here

**Where are you trying to do it?**

Provide a self-contained code snippet that illustrates the bug or unexpected behavior.
Ideally, include a link to a public repository with a minimal project where someone from the
testcontainers-python can submit a PR with a solution to the problem you are facing with the library.

**Runtime environment**

Provide a summary of your runtime environment. Which operating system, python version, and docker version are you using? What is the version of `testcontainers-python` you are using? You can run the following commands to get the relevant information.

```bash
# Get the operating system information (on a unix os).
$ uname -a
# Get the python version.
$ python --version
# Get the docker version and other docker information.
$ docker info
# Get all python packages.
$ pip freeze
```
23 changes: 0 additions & 23 deletions CODEOWNERS

This file was deleted.

Loading