Skip to content

Commit

Permalink
Merge pull request #73 from serverlessworkflow/feat-form-based-issue-…
Browse files Browse the repository at this point in the history
…templates

Replace standard issue templates by form-based ones
  • Loading branch information
cdavernas authored Dec 19, 2024
2 parents c0f61b4 + fa97612 commit a5bcf84
Show file tree
Hide file tree
Showing 9 changed files with 140 additions and 47 deletions.
1 change: 0 additions & 1 deletion .github/CODEOWNERS

This file was deleted.

16 changes: 0 additions & 16 deletions .github/ISSUE_TEMPLATE/bug-report.md

This file was deleted.

72 changes: 72 additions & 0 deletions .github/ISSUE_TEMPLATE/bug.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,72 @@
name: Bug Report
description: Create a bug report
labels: ["bug"]
body:
- type: markdown
attributes:
value: |
:pray: Thanks for taking the time to fill out this bug report!
- type: markdown
attributes:
value: |
## Bug Report
- type: textarea
id: i-tried-this
attributes:
label: "I tried this:"
placeholder: "What did you try to do? A code snippet or example helps."
validations:
required: true

- type: textarea
id: instead-what-happened
attributes:
label: "This happened:"
placeholder: "What happened instead of what you've expected?"
validations:
required: true

- type: textarea
id: what-did-you-expect
attributes:
label: "I expected this:"
placeholder: "What did you expect to happen? Describe the output or behavior you expected to see (unless it's obvious)."

- type: textarea
id: workaround
attributes:
label: "Is there a workaround?"
placeholder: "What's the workaround to avoid this issue?"

- type: textarea
attributes:
label: Anything else?
placeholder: |
Links? References? Logs? Anything that will give us more context about the issue you are encountering.
Tip: You can attach images or log files by dragging files in.
- type: markdown
attributes:
value: |
## Environment
- type: dropdown
id: platform
attributes:
label: "Platform(s)"
multiple: true
options:
- MacOS
- Linux
- Windows
- Other

- type: textarea
attributes:
label: Community Notes
value: |
<!-- Please keep this note for the community -->
* Please vote by adding a 👍 reaction to the issue to help us prioritize.
* If you are interested to work on this issue, please leave a comment.name: Bug Report 🐞
2 changes: 2 additions & 0 deletions .github/ISSUE_TEMPLATE/config.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
blank_issues_enabled: false
contact_links: []
10 changes: 0 additions & 10 deletions .github/ISSUE_TEMPLATE/enhancement.md

This file was deleted.

47 changes: 47 additions & 0 deletions .github/ISSUE_TEMPLATE/feature.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,47 @@
name: Feature Request
description: Create a feature request
labels: ["enhancement"]
body:
- type: markdown
attributes:
value: |
:pray: Thanks for taking the time to fill out this feature request!
- type: markdown
attributes:
value: |
## Feature Request
- type: textarea
id: what-would-you-like-to-be-added
attributes:
label: "What would you like to be added?"
placeholder: "Description of the feature you'd like to see."
validations:
required: true

- type: textarea
id: proposals
attributes:
label: "Proposal(s):"
placeholder: "Describe your proposal(s) and any relevant details here."

- type: textarea
id: alternatives
attributes:
label: "Alternative(s):"
placeholder: "Describe any alternative approaches, options, or suggestions you’d like to consider."

- type: textarea
id: additional-info
attributes:
label: "Additional info:"
placeholder: "Provide any supplementary details, context, or supporting information here."

- type: textarea
attributes:
label: Community Notes
value: |
<!-- Please keep this note for the community -->
* Please vote by adding a 👍 reaction to the feature to help us prioritize.
* If you are interested to work on this feature, please leave a comment.
8 changes: 0 additions & 8 deletions .github/ISSUE_TEMPLATE/question.md

This file was deleted.

12 changes: 0 additions & 12 deletions .github/OWNERS

This file was deleted.

19 changes: 19 additions & 0 deletions ServerlessWorkflow.Sdk.sln
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,23 @@ Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "ServerlessWorkflow.Sdk.IO",
EndProject
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "ServerlessWorkflow.Sdk.UnitTests", "tests\ServerlessWorkflow.Sdk.UnitTests\ServerlessWorkflow.Sdk.UnitTests.csproj", "{7BFC0DDB-7864-4C5A-AC91-EB7B3E93242E}"
EndProject
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = ".github", ".github", "{A8E842C3-60C4-46A7-A2D7-57C28BA151E6}"
ProjectSection(SolutionItems) = preProject
.github\PULL_REQUEST_TEMPLATE.md = .github\PULL_REQUEST_TEMPLATE.md
EndProjectSection
EndProject
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "ISSUE_TEMPLATE", "ISSUE_TEMPLATE", "{3327DDB8-87C1-4A08-9221-A8CD1450DD12}"
EndProject
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "workflows", "workflows", "{8BA94EDE-CE8B-4476-A58F-50162B06EE71}"
ProjectSection(SolutionItems) = preProject
.github\workflows\build-dotnet.yml = .github\workflows\build-dotnet.yml
.github\workflows\ci-pipeline.yml = .github\workflows\ci-pipeline.yml
.github\workflows\publish.yml = .github\workflows\publish.yml
.github\workflows\release.yml = .github\workflows\release.yml
.github\workflows\test-dotnet.yml = .github\workflows\test-dotnet.yml
.github\workflows\versioning.yml = .github\workflows\versioning.yml
EndProjectSection
EndProject
Global
GlobalSection(SolutionConfigurationPlatforms) = preSolution
Debug|Any CPU = Debug|Any CPU
Expand Down Expand Up @@ -61,6 +78,8 @@ Global
{53A4A0D8-E2F4-43BC-808F-37B1EB7837DE} = {9016CF88-4100-425F-9E1A-B6099F55A35B}
{9993989F-B8D6-481C-A59C-A76070CA32F4} = {9016CF88-4100-425F-9E1A-B6099F55A35B}
{7BFC0DDB-7864-4C5A-AC91-EB7B3E93242E} = {60FE2678-84CF-492C-950D-3485582F6712}
{3327DDB8-87C1-4A08-9221-A8CD1450DD12} = {A8E842C3-60C4-46A7-A2D7-57C28BA151E6}
{8BA94EDE-CE8B-4476-A58F-50162B06EE71} = {A8E842C3-60C4-46A7-A2D7-57C28BA151E6}
EndGlobalSection
GlobalSection(ExtensibilityGlobals) = postSolution
SolutionGuid = {1402FB0B-4169-41A6-A372-DA260E79481B}
Expand Down

0 comments on commit a5bcf84

Please sign in to comment.