File tree Expand file tree Collapse file tree 2 files changed +79
-0
lines changed Expand file tree Collapse file tree 2 files changed +79
-0
lines changed Original file line number Diff line number Diff line change
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://..."
Original file line number Diff line number Diff line change @@ -3,8 +3,20 @@ name: Test target-postgres
3
3
on :
4
4
pull_request :
5
5
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
6
12
push :
7
13
branches : [main]
14
+ paths :
15
+ - docker-compose.yml
16
+ - pyproject.toml
17
+ - poetry.lock
18
+ - targets_postgres/**
19
+ - .github/workflows/ci_workflow.yml
8
20
workflow_dispatch :
9
21
inputs : {}
10
22
You can’t perform that action at this time.
0 commit comments