Browse Source

Merge pull request #5812 from pixelfed/shleeable-patch-2

[Enhancement] Github Issues Templates
daniel 4 months ago
parent
commit
49b19032b4

+ 65 - 0
.github/ISSUE_TEMPLATE/bug-report.yml

@@ -0,0 +1,65 @@
+name: 🐞 Bug report
+title: "[Bug]: "
+labels: ["bug", "triage"]
+description: Report an issue with Pixelfed here
+body:
+  - type: markdown
+    attributes:
+      value: |
+        Thanks for taking the time to fill out this bug report!
+
+        Before you proceed:
+
+        - Make sure to check whether there are similar issues in the repository
+        - Make sure you're using the latest version of the app
+
+  - type: markdown
+    attributes:
+      value: |
+        ## Required information
+  - type: textarea
+    id: description
+    attributes:
+      label: Description
+      description: Please provide a clear, concise and descriptive explanation of what the bug is. Include screenshots or a video if possible. Tell us what were you expecting to happen instead of what is happening now.
+    validations:
+      required: true
+
+  - type: textarea
+    id: steps-to-reproduce
+    attributes:
+      label: Steps to reproduce
+      description: Provide a detailed list of steps that reproduce the issue.
+      placeholder: |
+        1.
+        2.
+        3.
+    validations:
+      required: true
+
+  - type: input
+    id: pixelfed-version
+    attributes:
+      label: Pixelfed version
+      description: What version of Pixelfed are you using?
+      placeholder: ex. 1.2.3
+    validations:
+      required: true
+
+  - type: markdown
+    attributes:
+      value: |
+        ## Additonal information
+
+        Providing as much information as possible greatly helps us with reproducting the issues.
+
+  - type: dropdown
+    id: acknowledgements
+    attributes:
+      label: Acknowledgements
+      description: I searched for similar issues in the repository.
+      options:
+        - 'Yes'
+    validations:
+      required: true
+

+ 8 - 0
.github/ISSUE_TEMPLATE/config.yml

@@ -0,0 +1,8 @@
+blank_issues_enabled: false
+contact_links:
+  - name: Mobile Application Issues
+    url: https://github.com/pixelfed/pixelfed-rn/issues
+    about: Please create issues in the mobile app repo.
+  - name: Question
+    url: https://discord.gg/6Fy6AJMbMU
+    about: Please ask and answer questions in our Discord server

+ 52 - 0
.github/ISSUE_TEMPLATE/feature-request.yml

@@ -0,0 +1,52 @@
+name: 💡 Feature request
+title: "[Feature]: "
+labels: ["enhancement", "triage"]
+description: Suggest a new feature for Pixelfed here
+body:
+  - type: markdown
+    attributes:
+      value: |
+        Thanks for taking the time to fill out this feature request form!
+
+        Before you proceed:
+
+        - Make sure to check whether there are similar feature requests open in the repository
+        - Make sure this isn't currenly being worked on in a pull request
+
+  - type: markdown
+    attributes:
+      value: |
+        ## Required information
+  - type: textarea
+    id: description
+    attributes:
+      label: Description
+      description: Please provide a clear, concise and description of what the feature is.
+    validations:
+      required: true
+
+  - type: textarea
+    id: use-case
+    attributes:
+      label: Use-case
+      description: Please describe how this feature will benefit you and other users.
+    validations:
+      required: true
+
+  - type: markdown
+    attributes:
+      value: |
+        ## Additonal information
+
+        Providing as much information as possible greatly helps us with reproducting the issues.
+
+  - type: dropdown
+    id: acknowledgements
+    attributes:
+      label: Acknowledgements
+      description: I searched for similar feature requests in the repository.
+      options:
+        - 'Yes'
+    validations:
+      required: true
+

+ 65 - 0
.github/ISSUE_TEMPLATE/federation.yml

@@ -0,0 +1,65 @@
+name: 🐞 Federation (ActivityPub)
+title: "[Federation]: "
+labels: ["activitypub", "triage"]
+description: Report an issue with Pixelfed and the Fediverse/ActivityPub here
+body:
+  - type: markdown
+    attributes:
+      value: |
+        Thanks for taking the time to fill out this bug report!
+
+        Before you proceed:
+
+        - Make sure to check whether there are similar issues in the repository
+        - Make sure you're using the latest version of the app
+
+  - type: markdown
+    attributes:
+      value: |
+        ## Required information
+  - type: textarea
+    id: description
+    attributes:
+      label: Description
+      description: Please provide a clear, concise and descriptive explanation of what the bug is. Include screenshots or a video if possible. Tell us what were you expecting to happen instead of what is happening now.
+    validations:
+      required: true
+
+  - type: textarea
+    id: steps-to-reproduce
+    attributes:
+      label: Steps to reproduce
+      description: Provide a detailed list of steps that reproduce the issue.
+      placeholder: |
+        1.
+        2.
+        3.
+    validations:
+      required: true
+
+  - type: input
+    id: pixelfed-version
+    attributes:
+      label: Pixelfed version
+      description: What version of Pixelfed are you using?
+      placeholder: ex. 1.2.3
+    validations:
+      required: true
+
+  - type: markdown
+    attributes:
+      value: |
+        ## Additonal information
+
+        Providing as much information as possible greatly helps us with reproducting the issues.
+
+  - type: dropdown
+    id: acknowledgements
+    attributes:
+      label: Acknowledgements
+      description: I searched for similar issues in the repository.
+      options:
+        - 'Yes'
+    validations:
+      required: true
+