Issue creation is restricted in this repository #199878
Unanswered
AhmedAbokhatwa
asked this question in
Discussions
Replies: 0 comments
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
Discussion Type
General
Discussion Content
i can Opn New Issue from my repo but people can not Open New Issue i do not Know what is problem also
i have created 3 tmplete in my
here is it
Screen.Recording.2026-06-22.at.10.56.08.PM.mov
in bug_report.yml
name: 🐞 Bug Report
description: Report a problem or unexpected behavior in the system
title: "[BUG]: "
labels: ["bug"]
body:
type: textarea
id: description
attributes:
label: Describe the issue
description: |
Explain the issue in detail, when it happens, and what causes it. Please also include the app version, and attach screenshots or a video to help us understand the problem clearly.
placeholder: |
Example:
When I open the POS screen and add a product, the system freezes for about 3 seconds...
validations:
required: true
type: textarea
id: steps
attributes:
label: Steps to reproduce
description: Write step-by-step reproduction of the issue
placeholder: |
1. Open POS
2. Select a product
3. Click Checkout
4. The issue appears
validations:
required: true
type: textarea
id: expected
attributes:
label: Expected behavior
description: What should have happened instead
placeholder: The checkout process should complete instantly without delay
validations:
required: false
type: input
id: version
attributes:
label: App version
placeholder: v1.0.0
validations:
required: false
type: dropdown
id: user_type
attributes:
label: You are
options:
- POS User (Cashier / Staff)
- Business Owner
- Developer
- Tester
- Other
validations:
required: true
in feature_request.yml
name: 💡 Feature Request
description: Suggest a new feature or improvement
title: "[FEATURE]: "
labels: ["feature"]
body:
type: textarea
id: idea
attributes:
label: Your idea
description: Explain your idea and how it would improve the product
placeholder: |
Example:
I would like to have a discount system that applies automatically based on customer type...
validations:
required: true
type: textarea
id: use_case
attributes:
label: Use case
description: Why is this feature needed? What problem does it solve?
validations:
required: false
type: dropdown
id: user_type
attributes:
label: You are
options:
- POS User
- Business Owner
- Developer
- Tester
- Other
validations:
required: true
in general_feedback.yml
name: 🗣️ General Feedback
description: Share your experience or suggestions about the product
title: "[FEEDBACK] "
labels: ["feedback"]
body:
type: textarea
id: feedback
attributes:
label: Your feedback
description: Share your overall experience (positive or negative)
placeholder: |
Example:
The system is very smooth, but the UI on mobile needs improvement...
validations:
required: true
type: dropdown
id: user_type
attributes:
label: You are
options:
- POS User
- Business Owner
- Developer
- Tester
- Other
validations:
required: true
Beta Was this translation helpful? Give feedback.
All reactions