Skip to content

Commit

Permalink
feature: github issue forms (#51)
Browse files Browse the repository at this point in the history
* feature: github issue form

* enhancement: added q&a link with reference to the discussion section

Co-authored-by: scarf <greenscarf005@gmail.com>
  • Loading branch information
leonsteinhaeuser and scarf005 committed Aug 24, 2022
1 parent 4f83f4b commit 6b189ed
Show file tree
Hide file tree
Showing 5 changed files with 128 additions and 56 deletions.
36 changes: 0 additions & 36 deletions .github/ISSUE_TEMPLATE/bug_report.md

This file was deleted.

78 changes: 78 additions & 0 deletions .github/ISSUE_TEMPLATE/bug_report.yml
@@ -0,0 +1,78 @@
name: Bug Report
description: File a bug report
title: "[ BUG ]: "
labels:
- "bug"
body:
- type: markdown
attributes:
value: |
Thanks for taking the time to fill out this bug report!
- type: checkboxes
attributes:
label: Is there an existing issue for this?
description: Please search to see if an issue already exists for the bug you encountered.
options:
- label: I have searched the existing issues
required: true
- type: textarea
attributes:
label: Current Behavior
description: A concise description of what you're experiencing.
validations:
required: true
- type: textarea
attributes:
label: Expected Behavior
description: A concise description of what you expected to happen.
validations:
required: false
- type: dropdown
id: version
attributes:
label: Version
description: What version of our software are you running?
options:
- v1.0.2
- v1.0.3
- v1.1.0
- v1.1.1
- v1.2.0
- v1.2.1
- v1.3.0
validations:
required: true
- type: dropdown
id: runners
attributes:
label: Which github actions runner are you using?
description: >
Please specify the operating system of your workflow's
[jobs.<job_id>.runs-on](https://docs.github.com/en/actions/using-workflows/workflow-syntax-for-github-actions#jobsjob_idruns-on)
multiple: true
options:
- Windows
- Linux
- MacOS
- Other
- type: textarea
id: to-reproduce
attributes:
label: Steps To Reproduce
description: "Steps to reproduce the behavior:"
placeholder: |
1. How did the configuration look like
2. What type of call was made
validations:
required: true
- type: textarea
id: logs
attributes:
label: Relevant log output
description: Please copy and paste any relevant log output. This will be automatically formatted into code, so no need for backticks.
render: shell
- type: textarea
id: additional-context
attributes:
label: "Additional context:"
description: Add any other context about the problem here.
5 changes: 5 additions & 0 deletions .github/ISSUE_TEMPLATE/config.yml
@@ -0,0 +1,5 @@
blank_issues_enabled: false
contact_links:
- name: Questions and Community Support
url: https://github.com/leonsteinhaeuser/project-beta-automations/discussions
about: Please ask and answer questions here.
20 changes: 0 additions & 20 deletions .github/ISSUE_TEMPLATE/feature_request.md

This file was deleted.

45 changes: 45 additions & 0 deletions .github/ISSUE_TEMPLATE/feature_request.yml
@@ -0,0 +1,45 @@
name: feature request
description: Create a report to help us improve
title: "[ FEATURE REQUEST ]: "
labels:
- feature request
body:
- type: markdown
attributes:
value: |
Thanks for taking the time to fill out this feature request report!
- type: checkboxes
attributes:
label: Is there an existing issue for this?
description: Please search to see if an issue already exists for the bug you encountered.
options:
- label: I have searched the existing issues
required: true
- type: textarea
id: related-to-a-problem
attributes:
label: Is your feature request related to a problem? Please describe
description: A clear and concise description of what the problem is.
validations:
required: true
- type: textarea
id: solution-youd-like-to-see
attributes:
label: "Describe the solution you'd like:"
description: A clear and concise description of what you want to happen.
validations:
required: true
- type: textarea
id: alternatives
attributes:
label: Describe alternatives you've considered
description: A clear and concise description of any alternative solutions or features you've considered.
validations:
required: false
- type: textarea
id: additional-context
attributes:
label: "Additional context:"
description: Add any other context or screenshots about the feature request here.
validations:
required: false

0 comments on commit 6b189ed

Please sign in to comment.