Skip to content

Commit 58c4375

Browse files
authored
Merge pull request #474 from serverlessworkflow/feat-form-based-issues-templates
Replace standard issue templates by form-based ones
2 parents 978ecd0 + fd7e589 commit 58c4375

File tree

6 files changed

+145
-26
lines changed

6 files changed

+145
-26
lines changed

.github/ISSUE_TEMPLATE/bug-report.md

-16
This file was deleted.

.github/ISSUE_TEMPLATE/bug.yml

+72
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,72 @@
1+
name: Bug Report
2+
description: Create a bug report
3+
labels: ["type: bug"]
4+
body:
5+
- type: markdown
6+
attributes:
7+
value: |
8+
:pray: Thanks for taking the time to fill out this bug report!
9+
10+
- type: markdown
11+
attributes:
12+
value: |
13+
## Bug Report
14+
15+
- type: textarea
16+
id: i-tried-this
17+
attributes:
18+
label: "I tried this:"
19+
placeholder: "What did you try to do? A code snippet or example helps."
20+
validations:
21+
required: true
22+
23+
- type: textarea
24+
id: instead-what-happened
25+
attributes:
26+
label: "This happened:"
27+
placeholder: "What happened instead of what you've expected?"
28+
validations:
29+
required: true
30+
31+
- type: textarea
32+
id: what-did-you-expect
33+
attributes:
34+
label: "I expected this:"
35+
placeholder: "What did you expect to happen? Describe the output or behavior you expected to see (unless it's obvious)."
36+
37+
- type: textarea
38+
id: workaround
39+
attributes:
40+
label: "Is there a workaround?"
41+
placeholder: "What's the workaround to avoid this issue?"
42+
43+
- type: textarea
44+
attributes:
45+
label: Anything else?
46+
placeholder: |
47+
Links? References? Logs? Anything that will give us more context about the issue you are encountering.
48+
Tip: You can attach images or log files by dragging files in.
49+
50+
- type: markdown
51+
attributes:
52+
value: |
53+
## Environment
54+
55+
- type: dropdown
56+
id: platform
57+
attributes:
58+
label: "Platform(s)"
59+
multiple: true
60+
options:
61+
- MacOS
62+
- Linux
63+
- Windows
64+
- Other
65+
66+
- type: textarea
67+
attributes:
68+
label: Community Notes
69+
value: |
70+
<!-- Please keep this note for the community -->
71+
* Please vote by adding a 👍 reaction to the issue to help us prioritize.
72+
* If you are interested to work on this issue, please leave a comment.name: Bug Report 🐞

.github/ISSUE_TEMPLATE/enhancement.md

-10
This file was deleted.

.github/ISSUE_TEMPLATE/feature.yml

+47
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,47 @@
1+
name: Feature Request
2+
description: Create a feature request
3+
labels: ["type: enhancement"]
4+
body:
5+
- type: markdown
6+
attributes:
7+
value: |
8+
:pray: Thanks for taking the time to fill out this feature request!
9+
10+
- type: markdown
11+
attributes:
12+
value: |
13+
## Feature Request
14+
15+
- type: textarea
16+
id: what-would-you-like-to-be-added
17+
attributes:
18+
label: "What would you like to be added?"
19+
placeholder: "Description of the feature you'd like to see."
20+
validations:
21+
required: true
22+
23+
- type: textarea
24+
id: proposals
25+
attributes:
26+
label: "Proposal(s):"
27+
placeholder: "Describe your proposal(s) and any relevant details here."
28+
29+
- type: textarea
30+
id: alternatives
31+
attributes:
32+
label: "Alternative(s):"
33+
placeholder: "Describe any alternative approaches, options, or suggestions you’d like to consider."
34+
35+
- type: textarea
36+
id: additional-info
37+
attributes:
38+
label: "Additional info:"
39+
placeholder: "Provide any supplementary details, context, or supporting information here."
40+
41+
- type: textarea
42+
attributes:
43+
label: Community Notes
44+
value: |
45+
<!-- Please keep this note for the community -->
46+
* Please vote by adding a 👍 reaction to the feature to help us prioritize.
47+
* If you are interested to work on this feature, please leave a comment.

Synapse.sln

+24
Original file line numberDiff line numberDiff line change
@@ -138,6 +138,28 @@ Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "kubernetes", "kubernetes",
138138
EndProject
139139
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Synapse.Core.Infrastructure.Containers.Kubernetes", "src\core\Synapse.Core.Infrastructure.Containers.Kubernetes\Synapse.Core.Infrastructure.Containers.Kubernetes.csproj", "{41C99069-BD99-4FD2-BF33-984CF03B53E8}"
140140
EndProject
141+
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = ".github", ".github", "{35D495F4-D267-4A84-9479-DB3C1BE85434}"
142+
ProjectSection(SolutionItems) = preProject
143+
.github\PULL_REQUEST_TEMPLATE.md = .github\PULL_REQUEST_TEMPLATE.md
144+
EndProjectSection
145+
EndProject
146+
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "workflows", "workflows", "{AB30A91B-0158-411D-9BD3-36FFA441B3A2}"
147+
ProjectSection(SolutionItems) = preProject
148+
.github\workflows\build-dotnet.yml = .github\workflows\build-dotnet.yml
149+
.github\workflows\ci-pipeline.yml = .github\workflows\ci-pipeline.yml
150+
.github\workflows\helm.yml = .github\workflows\helm.yml
151+
.github\workflows\publish.yml = .github\workflows\publish.yml
152+
.github\workflows\release.yml = .github\workflows\release.yml
153+
.github\workflows\versioning.yml = .github\workflows\versioning.yml
154+
EndProjectSection
155+
EndProject
156+
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "ISSUE_TEMPLATE", "ISSUE_TEMPLATE", "{06404855-A5BE-4556-91BC-064630E95737}"
157+
ProjectSection(SolutionItems) = preProject
158+
.github\ISSUE_TEMPLATE\bug.yml = .github\ISSUE_TEMPLATE\bug.yml
159+
config.yml = config.yml
160+
.github\ISSUE_TEMPLATE\feature.yml = .github\ISSUE_TEMPLATE\feature.yml
161+
EndProjectSection
162+
EndProject
141163
Global
142164
GlobalSection(SolutionConfigurationPlatforms) = preSolution
143165
Debug|Any CPU = Debug|Any CPU
@@ -272,6 +294,8 @@ Global
272294
{DD6381BD-2C8B-4CE1-99B2-EC585DD818FA} = {9E296C8A-4D78-4592-B046-11A3A953FD25}
273295
{B3F3DB1B-23E7-45FA-8934-448BFFB294E8} = {562C91A3-6E91-4489-9D9D-064E7436D900}
274296
{41C99069-BD99-4FD2-BF33-984CF03B53E8} = {9E296C8A-4D78-4592-B046-11A3A953FD25}
297+
{AB30A91B-0158-411D-9BD3-36FFA441B3A2} = {35D495F4-D267-4A84-9479-DB3C1BE85434}
298+
{06404855-A5BE-4556-91BC-064630E95737} = {35D495F4-D267-4A84-9479-DB3C1BE85434}
275299
EndGlobalSection
276300
GlobalSection(ExtensibilityGlobals) = postSolution
277301
SolutionGuid = {2A6C03D6-355A-4B39-9F2B-D0FDE429C0E2}

config.yml

+2
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
blank_issues_enabled: false
2+
contact_links: []

0 commit comments

Comments
 (0)