Skip to content
Merged

Dev #16

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
41 changes: 27 additions & 14 deletions .github/ISSUE_TEMPLATE/bug_report.md
Original file line number Diff line number Diff line change
@@ -1,32 +1,45 @@
---
name: Bug report
about: Create a report to help us improve
name: Bug Report
about: Report a bug or unexpected behavior
title: ""
labels: bug, needs-triage
labels: bug
assignees: ""
---

**Describe the bug**
## Description

A clear and concise description of what the bug is.

**To Reproduce**
Steps to reproduce the behavior:
## Steps to Reproduce

1. Go to '...'
2. Click on '...'
3. Scroll down to '...'
3. Execute '...'
4. See error

**Expected behavior**
## Expected Behavior

A clear and concise description of what you expected to happen.

**Screenshots**
If applicable, add screenshots to help explain your problem.
## Actual Behavior

A clear and concise description of what actually happened.

## Environment

- OS: [e.g., Ubuntu 22.04, Windows 11, macOS 14]
- Python Version: [e.g., 3.11.5]
- Docker Version: [e.g., 24.0.7]
- Browser (if applicable): [e.g., Chrome 120, Firefox 121]

## Logs/Screenshots

If applicable, add logs or screenshots to help explain your problem.

**Environment (please complete the following information):**
```
Paste relevant logs here
```

- OS: [e.g. Ubuntu 22.04]
- Version [e.g. 1.0.0]
## Additional Context

**Additional context**
Add any other context about the problem here.
18 changes: 11 additions & 7 deletions .github/ISSUE_TEMPLATE/feature_request.md
Original file line number Diff line number Diff line change
@@ -1,19 +1,23 @@
---
name: Feature request
about: Suggest an idea for this project
name: Feature Request
about: Suggest a new feature or enhancement
title: ""
labels: enhancement, needs-triage
labels: enhancement
assignees: ""
---

**Is your feature request related to a problem? Please describe.**
## Problem Description

A clear and concise description of what the problem is. Ex. I'm always frustrated when [...]

**Describe the solution you'd like**
## Proposed Solution

A clear and concise description of what you want to happen.

**Describe alternatives you've considered**
## Alternatives Considered

A clear and concise description of any alternative solutions or features you've considered.

**Additional context**
## Additional Context

Add any other context or screenshots about the feature request here.
6 changes: 6 additions & 0 deletions .github/workflows/docker-publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,12 @@ on:
push:
branches: ["main", "dev"]
tags: ["v*.*.*"]
paths:
- 'Dockerfile'
- 'src/**'
- 'requirements.txt'
- 'pyproject.toml'
- '.github/workflows/docker-publish.yml'
workflow_dispatch:

env:
Expand Down
Loading