├── README.md └── .github └── ISSUE_TEMPLATE ├── question.yaml └── bug.yaml /README.md: -------------------------------------------------------------------------------- 1 | # digital-gravferd 2 | Backlog for digital gravferd 3 | -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/question.yaml: -------------------------------------------------------------------------------- 1 | name: ❓ Question 2 | description: Ask a question about using or understanding the project. Be mindful of not sharing sensitive information. 3 | labels: [kind/question] 4 | body: 5 | - type: textarea 6 | id: question 7 | attributes: 8 | label: Your Question 9 | description: What's on your mind? Be as clear as you can. 10 | placeholder: "How do I...?" 11 | validations: 12 | required: true 13 | - type: textarea 14 | id: context 15 | attributes: 16 | label: Extra context 17 | description: Add any details, code snippets, or links that might help. 18 | placeholder: "I tried this... I expected that..." 19 | -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug.yaml: -------------------------------------------------------------------------------- 1 | name: 🐛 Bug Report 2 | description: Report something that isn't working as expected. Be mindful of not sharing sensitive information. 3 | labels: [kind/bug] 4 | body: 5 | - type: textarea 6 | id: description 7 | attributes: 8 | label: What happened? 9 | description: Explain the problem clearly. 10 | placeholder: "When I do X, I expected Y, but got Z." 11 | validations: 12 | required: true 13 | - type: textarea 14 | id: steps 15 | attributes: 16 | label: Steps to Reproduce 17 | description: How can we see the bug? 18 | placeholder: | 19 | 1. Go to '...' 20 | 2. Click on '...' 21 | 3. See error --------------------------------------------------------------------------------