Skip to content

Commit

Permalink
Add issue template yaml
Browse files Browse the repository at this point in the history
  • Loading branch information
sungaila committed Nov 19, 2023
1 parent 839885d commit 968c6b8
Show file tree
Hide file tree
Showing 6 changed files with 127 additions and 24 deletions.
23 changes: 0 additions & 23 deletions .github/ISSUE_TEMPLATE/bug_report.md

This file was deleted.

93 changes: 93 additions & 0 deletions .github/ISSUE_TEMPLATE/bug_report.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,93 @@
name: Bug report
description: Something isn't working as expected
labels: ["bug"]
assignees: ["sungaila"]
body:
- type: markdown
attributes:
value: |
Thanks for creating a bug report! If possible, please check if your issue can be reproduced on the official web converter: <https://www.sungaila.de/PDFtoZPL/>
- type: input
id: version
attributes:
label: PDFtoZPL version
description: Which version of PDFtoZPL is affected?
value: 3.6.3
validations:
required: true
- type: dropdown
id: os
attributes:
label: OS
description: Which operating system was used?
options:
- Windows
- Linux
- macOS
- Android
- (Other)
validations:
required: true
- type: input
id: os-version
attributes:
label: OS version
description: Which operating system version was used?
placeholder: e.g. Windows 11 23H2, Ubuntu 23.10, macOS 14.1, Android 14, ...
validations:
required: false
- type: dropdown
id: architecture
attributes:
label: Architecture
description: Which CPU architecture was used?
options:
- x86
- x64
- arm64
- (Other)
default: 1
validations:
required: true
- type: dropdown
id: framework
attributes:
label: Framework
description: Which framework was used?
options:
- .NET Framework
- .NET (Core)
- Xamarin.Android (MonoAndroid)
- (Other)
default: 1
validations:
required: true
- type: input
id: appframework
attributes:
label: App framework
description: Which app framework was used?
placeholder: e.g. ASP.NET Core, .NET MAUI, WinUI, ...
validations:
required: false
- type: textarea
id: issue
attributes:
label: Detailed bug report
description: Please tell us in detail what happened and what you expected to happen instead.
placeholder: |
What happened? What should have happened instead?
Steps to reproduce this issue.
Exception messages including stack traces.
Screenshots or example PDF files/images.
validations:
required: true
- type: textarea
id: zpl
attributes:
label: Generated ZPL code
description: If you have generated ZPL code you want to share with us, you can insert it here. Make sure that you do not disclose any personal information.
placeholder: |
^XA^GFA,813604,813604,451,:Z64:eNrtnU+ytLqZpyGoMD2oaDbQUeol1A ...
validations:
required: false
5 changes: 5 additions & 0 deletions .github/ISSUE_TEMPLATE/config.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
blank_issues_enabled: true
contact_links:
- name: Issue with SkiaSharp
url: https://github.com/mono/SkiaSharp/issues/new/choose
about: Please open issues relating to SkiaSharp here
16 changes: 16 additions & 0 deletions .github/ISSUE_TEMPLATE/feature_request.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
name: Feature request
description: Suggest a new feature or requirement
labels: ["enhancement"]
assignees: ["sungaila"]
body:
- type: textarea
id: request
attributes:
label: Detailed feature request
description: Please let us know in detail which new feature you would like or which new requirement is to be fulfilled.
placeholder: |
What feature is missing and why is it important?
Would this new feature break existing apps?
Can you use this project in your app? Is it supported?
validations:
required: true
12 changes: 12 additions & 0 deletions .github/ISSUE_TEMPLATE/question.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
name: Question
description: Ask a question related to this project
labels: ["question"]
assignees: ["sungaila"]
body:
- type: textarea
id: request
attributes:
label: Question
description: Please ask us any questions in relation to PDFtoZPL.
validations:
required: true
2 changes: 1 addition & 1 deletion PDFtoZPL/PDFtoZPL.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
<PackageIconUrl>https://raw.githubusercontent.com/sungaila/PDFtoZPL/master/Icon_128.png</PackageIconUrl>
<Description>A .NET library to convert PDF files (and bitmaps) into Zebra Programming Language code.</Description>
<PackageReleaseNotes>- Cleanup of native lib loading for .NET (Core).</PackageReleaseNotes>
<PackageTags>PDF ZPL Zebra Bitmap Convert Conversion C# PDFium MAUI WASM WebAssembly</PackageTags>
<PackageTags>PDF ZPL Zebra Bitmap Convert Conversion C# PDFium MAUI wasm WebAssembly</PackageTags>
<RepositoryUrl>https://github.com/sungaila/PDFtoZPL.git</RepositoryUrl>
<RepositoryType>git</RepositoryType>
<IncludeSymbols>true</IncludeSymbols>
Expand Down

0 comments on commit 968c6b8

Please sign in to comment.