Skip to content

Commit

Permalink
chore: Add a bug report template (#412)
Browse files Browse the repository at this point in the history
  • Loading branch information
edgarrmondragon authored Aug 15, 2024
1 parent 31c0567 commit 39f7153
Show file tree
Hide file tree
Showing 2 changed files with 79 additions and 0 deletions.
67 changes: 67 additions & 0 deletions .github/ISSUE_TEMPLATE/bug.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,67 @@
name: Bug Report
description: File a bug report
title: "bug: <title>"

labels:
- bug

assignees:
- edgarrmondragon

body:
- type: markdown
attributes:
value: |
Thanks for taking the time to fill out this bug report!
- type: input
id: target_version
attributes:
label: Target Version
description: Version of the package you are using
placeholder: "0.0.10 on PyPI, 0.0.10 on GitHub, main branch, etc."
validations:
required: true
- type: dropdown
id: python_version
attributes:
label: Python Version
description: Version of Python you are using
options:
- "3.12"
- "3.11"
- "3.10"
- "3.9"
- "3.8"
- "NA"
validations:
required: true
- type: input
id: postgres_version
attributes:
label: PostgreSQL Version
description: Version of PostgreSQL the target is loading
placeholder: "15.1"
validations:
required: true
- type: input
id: os
attributes:
label: Operating System
description: What operating system you are using
placeholder: "Linux - Ubuntu 20.04"
validations:
required: true
- type: textarea
id: what-happened
attributes:
label: Description
description: Describe what you were trying to get done
placeholder: Tell us what happened, what went wrong, and what you expected to happen
validations:
required: true
- type: input
id: slack_or_linen
attributes:
label: Link to Slack/Linen
description: Provide a link to the Slack or Linen conversation, if applicable
placeholder: "https://..."
12 changes: 12 additions & 0 deletions .github/workflows/ci_workflow.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,20 @@ name: Test target-postgres
on:
pull_request:
types: [opened, synchronize, reopened]
paths:
- docker-compose.yml
- pyproject.toml
- poetry.lock
- targets_postgres/**
- .github/workflows/ci_workflow.yml
push:
branches: [main]
paths:
- docker-compose.yml
- pyproject.toml
- poetry.lock
- targets_postgres/**
- .github/workflows/ci_workflow.yml
workflow_dispatch:
inputs: {}

Expand Down

0 comments on commit 39f7153

Please sign in to comment.