File tree Expand file tree Collapse file tree 5 files changed +107
-3
lines changed Expand file tree Collapse file tree 5 files changed +107
-3
lines changed Original file line number Diff line number Diff line change
1
+ ---
2
+ name : " 🐛 Bug Report"
3
+ description : " If something isn't working as expected 🤔."
4
+ labels : ["type/bug"]
5
+ body :
6
+ - type : markdown
7
+ attributes :
8
+ value : Thanks for taking the time to file a bug report! Please fill out this form as completely as possible.
9
+
10
+ - type : input
11
+ attributes :
12
+ label : Affected version
13
+ description : Which version do you see this bug in?
14
+
15
+ - type : textarea
16
+ attributes :
17
+ label : Current and expected behavior
18
+ description : A clear and concise description of what the operator is doing and what you would expect.
19
+ validations :
20
+ required : true
21
+
22
+ - type : textarea
23
+ attributes :
24
+ label : Possible solution
25
+ description : " If you have suggestions on a fix for the bug."
26
+
27
+ - type : textarea
28
+ attributes :
29
+ label : Additional context
30
+ description : " Add any other context about the problem here. Or a screenshot if applicable."
31
+
32
+ - type : textarea
33
+ attributes :
34
+ label : Environment
35
+ description : |
36
+ What type of kubernetes cluster you are running aginst (k3s/eks/aks/gke/other) and any other information about your environment?
37
+ placeholder : |
38
+ Examples:
39
+ Output of `kubectl version --short`
40
+
41
+ - type : dropdown
42
+ attributes :
43
+ label : Would you like to work on fixing this bug?
44
+ description : |
45
+ **NOTE**: Let us know if you would like to submit a PR for this. We are more than happy to help you through the process.
46
+ options :
47
+ - " yes"
48
+ - " no"
49
+ - " maybe"
Original file line number Diff line number Diff line change
1
+ ---
2
+ blank_issues_enabled : true
3
+ contact_links :
4
+ - name : Feature request
5
+ about : 🚀 Suggest an idea for this project
6
+ url : https://github.com/stackabletech/zookeeper-operator/discussions/new?category=ideas
7
+ - name : 🙋🏾 Question
8
+ about : Use this to ask a question about this project
9
+ url : https://github.com/stackabletech/zookeeper-operator/discussions/new?category=q-a
10
+ - name : Other issue
11
+ about : Open an issue that doesn't fit any other category
12
+ url : https://github.com/stackabletech/zookeeper-operator/issues/new
Original file line number Diff line number Diff line change
1
+ ---
2
+ name : New Version
3
+ about : Request support for a new product version
4
+ title : " [NEW VERSION]"
5
+ labels : ' '
6
+ assignees : ' '
7
+
8
+ ---
9
+
10
+ ** Which new version of Apache ZooKeeper should we support?**
11
+
12
+ Please specify the version, version range or version numbers to support, please also add these to the issue title
13
+
14
+ ** Additional information**
15
+
16
+ If possible, provide a link to release notes/changelog
17
+
18
+ ** Changes required**
19
+
20
+ Are there any upstream changes that we need to support?
21
+ e.g. new features, changed features, deprecated features etc.
22
+
23
+
24
+
25
+ ** Implementation checklist**
26
+
27
+ Please don't change anything in this list.
28
+ Not all of these steps are necessary for all versions.
29
+
30
+ - [ ] Update the Docker image
31
+ - [ ] Update documentation to include supported version(s)
32
+ - [ ] Update operator to support the new version (if needed)
33
+ - [ ] Update integration tests to test use the new versions (in addition or replacing old versions
34
+ - [ ] Update examples to use new versions
Original file line number Diff line number Diff line change @@ -181,7 +181,6 @@ jobs:
181
181
- run_clippy
182
182
- run_rustfmt
183
183
- run_rustdoc
184
- - run_udeps
185
184
runs-on : ubuntu-latest
186
185
steps :
187
186
- uses : actions/checkout@ec3a7ce113134d7a93b817d10a8272cb61118579 # renovate: tag=v2.4.0
@@ -255,10 +254,20 @@ jobs:
255
254
- name : placeholder
256
255
run : echo Tests will go here
257
256
257
+ tests_passed :
258
+ name : All tests passed
259
+ needs :
260
+ - test_charts
261
+ - run_udeps
262
+ runs-on : ubuntu-latest
263
+ steps :
264
+ - name : log
265
+ run : echo All tests have passed!
266
+
258
267
package_and_publish :
259
268
name : Package Charts, Build Docker Image and publish them
260
269
needs :
261
- - test_charts
270
+ - tests_passed
262
271
- select_repo
263
272
runs-on : ubuntu-latest
264
273
env :
Original file line number Diff line number Diff line change 1
1
status = [
2
- ' Run Chart Tests '
2
+ ' All tests passed '
3
3
]
4
4
delete_merged_branches = true
5
5
use_squash_merge = true
You can’t perform that action at this time.
0 commit comments