diff --git a/.github/ISSUE_TEMPLATE/1-bug-report.yml b/.github/ISSUE_TEMPLATE/1-bug-report.yml deleted file mode 100644 index 2ce0e6079..000000000 --- a/.github/ISSUE_TEMPLATE/1-bug-report.yml +++ /dev/null @@ -1,70 +0,0 @@ -name: "\U0001F41B Bug report" -description: "Report a bug with this project." -labels: "bug" -body: - - type: markdown - attributes: - value: | - Thanks for taking the time to fill out this bug report! Please fill in as much of the template below as you can. - - type: textarea - attributes: - label: Describe the bug - description: Please write a clear and concise description of the bug, including what you expect to happen and what is currently happening. - placeholder: | - Feature '...' is not working properly. I expect '...' to happen, but '...' happens instead - validations: - required: true - - - type: textarea - attributes: - label: Steps to Reproduce - description: Please write the steps needed to reproduce the bug. - placeholder: | - 1. Go to '...' - 2. Click on '...' - 3. Scroll down to '...' - 4. See error - validations: - required: true - - - type: textarea - attributes: - label: Screenshots, screen recording, code snippet - description: | - If possible, please upload a screenshot or screen recording which demonstrates the bug. You can use LIEcap to create a GIF screen recording: https://www.cockos.com/licecap/ - Tip: You can attach images or log files by clicking this area to highlight it and then dragging files in. - For small snippets paste it directly here, or you can use GitHub Gist to share multiple code files: https://gist.github.com - Please ensure the shared code can be used by a developer to reproduce the issue—ideally it can be copied into a local development environment or executed in a browser console to help debug the issue - validations: - required: false - - - type: textarea - attributes: - label: Environment information - placeholder: | - - Device: - - OS: - - Browser and version: - validations: - required: false - - - type: textarea - attributes: - label: WordPress information - placeholder: | - - -
Site Health info: - -
- validations: - required: false - - - type: checkboxes - id: terms - attributes: - label: Code of Conduct - description: By submitting this issue, you agree to follow our `Code of Conduct` (see the `CODE_OF_CONDUCT.md` file in the repo). - options: - - label: I agree to follow this project's Code of Conduct - required: true diff --git a/.github/ISSUE_TEMPLATE/2-enhancement.yml b/.github/ISSUE_TEMPLATE/2-enhancement.yml deleted file mode 100644 index b54e0b0fb..000000000 --- a/.github/ISSUE_TEMPLATE/2-enhancement.yml +++ /dev/null @@ -1,44 +0,0 @@ -name: "\U0001F680 Enhancement" -description: "Suggest an idea for this project." -labels: "enhancement" -body: - - type: markdown - attributes: - value: | - Thank you for suggesting an idea to make things better. Please fill in as much of the template below as you can. - - type: textarea - attributes: - label: Is your enhancement related to a problem? Please describe. - description: Please describe the problem you are trying to solve. - placeholder: | - I use this project as a `...` and I would like `...` so that `...describe benefit...`. - validations: - required: true - - - type: textarea - attributes: - label: Designs - description: | - If applicable, add mockups/screenshots/etc. to help explain your idea. - Tip: You can attach images or videos by clicking this area to highlight it and then dragging files in. - validations: - required: false - - - type: textarea - attributes: - label: Describe alternatives you've considered - description: | - Please describe alternative solutions or features you have considered. - placeholder: | - I have also considered `...describe alternative...`, however I feel that my solution described above is better because of `...reason...`. - validations: - required: false - - - type: checkboxes - id: terms - attributes: - label: Code of Conduct - description: By submitting this issue, you agree to follow our `Code of Conduct` (see the `CODE_OF_CONDUCT.md` file in the repo). - options: - - label: I agree to follow this project's Code of Conduct - required: true diff --git a/.github/ISSUE_TEMPLATE/3-help.yml b/.github/ISSUE_TEMPLATE/3-help.yml deleted file mode 100644 index be2c30146..000000000 --- a/.github/ISSUE_TEMPLATE/3-help.yml +++ /dev/null @@ -1,23 +0,0 @@ -name: "❓ Need help?" -description: "Ask us a question, we are here to help!" -labels: "question" -body: - - type: markdown - attributes: - value: | - If you have a question that is neither a bug report nor an enhancement, then please post it here! Please fill in as much of the template below as you can. - - type: textarea - attributes: - label: Describe your question - description: A clear and concise description of what your question is. - validations: - required: true - - - type: checkboxes - id: terms - attributes: - label: Code of Conduct - description: By submitting this issue, you agree to follow our `Code of Conduct` (see the `CODE_OF_CONDUCT.md` file in the repo). - options: - - label: I agree to follow this project's Code of Conduct - required: true diff --git a/.github/PULL_REQUEST_TEMPLATE.md b/.github/PULL_REQUEST_TEMPLATE.md deleted file mode 100644 index b8335251a..000000000 --- a/.github/PULL_REQUEST_TEMPLATE.md +++ /dev/null @@ -1,42 +0,0 @@ - - -### Description of the Change - - - -Closes # - -### How to test the Change - - -### Changelog Entry - -> Added - New feature -> Changed - Existing functionality -> Deprecated - Soon-to-be removed feature -> Removed - Feature -> Fixed - Bug fix -> Security - Vulnerability - -### Credits - -Props @username, @username2, ... - -### Checklist: - - -- [ ] I agree to follow this project's [**Code of Conduct**](https://github.com/GatherPress/gatherpress/blob/main/CODE_OF_CONDUCT.md). -- [ ] I have updated the documentation accordingly. -- [ ] I have added tests to cover my change. -- [ ] All new and existing tests pass.