Skip to content

Commit 39f7153

Browse files
chore: Add a bug report template (#412)
1 parent 31c0567 commit 39f7153

File tree

2 files changed

+79
-0
lines changed

2 files changed

+79
-0
lines changed

.github/ISSUE_TEMPLATE/bug.yml

Lines changed: 67 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,67 @@
1+
name: Bug Report
2+
description: File a bug report
3+
title: "bug: <title>"
4+
5+
labels:
6+
- bug
7+
8+
assignees:
9+
- edgarrmondragon
10+
11+
body:
12+
- type: markdown
13+
attributes:
14+
value: |
15+
Thanks for taking the time to fill out this bug report!
16+
- type: input
17+
id: target_version
18+
attributes:
19+
label: Target Version
20+
description: Version of the package you are using
21+
placeholder: "0.0.10 on PyPI, 0.0.10 on GitHub, main branch, etc."
22+
validations:
23+
required: true
24+
- type: dropdown
25+
id: python_version
26+
attributes:
27+
label: Python Version
28+
description: Version of Python you are using
29+
options:
30+
- "3.12"
31+
- "3.11"
32+
- "3.10"
33+
- "3.9"
34+
- "3.8"
35+
- "NA"
36+
validations:
37+
required: true
38+
- type: input
39+
id: postgres_version
40+
attributes:
41+
label: PostgreSQL Version
42+
description: Version of PostgreSQL the target is loading
43+
placeholder: "15.1"
44+
validations:
45+
required: true
46+
- type: input
47+
id: os
48+
attributes:
49+
label: Operating System
50+
description: What operating system you are using
51+
placeholder: "Linux - Ubuntu 20.04"
52+
validations:
53+
required: true
54+
- type: textarea
55+
id: what-happened
56+
attributes:
57+
label: Description
58+
description: Describe what you were trying to get done
59+
placeholder: Tell us what happened, what went wrong, and what you expected to happen
60+
validations:
61+
required: true
62+
- type: input
63+
id: slack_or_linen
64+
attributes:
65+
label: Link to Slack/Linen
66+
description: Provide a link to the Slack or Linen conversation, if applicable
67+
placeholder: "https://..."

.github/workflows/ci_workflow.yml

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,20 @@ name: Test target-postgres
33
on:
44
pull_request:
55
types: [opened, synchronize, reopened]
6+
paths:
7+
- docker-compose.yml
8+
- pyproject.toml
9+
- poetry.lock
10+
- targets_postgres/**
11+
- .github/workflows/ci_workflow.yml
612
push:
713
branches: [main]
14+
paths:
15+
- docker-compose.yml
16+
- pyproject.toml
17+
- poetry.lock
18+
- targets_postgres/**
19+
- .github/workflows/ci_workflow.yml
820
workflow_dispatch:
921
inputs: {}
1022

0 commit comments

Comments
 (0)