From 50bba7f41fff600d349d5bf824082ce941f0bac1 Mon Sep 17 00:00:00 2001 From: Amr Bashir Date: Fri, 15 Dec 2023 06:42:57 +0200 Subject: [PATCH] chore: cleanup issue and PR templates (#856) * chore: cleanup issue and PR templates * Update bug_report.md * Update feature_request.md * Update PULL_REQUEST_TEMPLATE.md * Update PULL_REQUEST_TEMPLATE.md --- .github/ISSUE_TEMPLATE/bug_report.md | 6 +--- .github/ISSUE_TEMPLATE/feature_request.md | 4 --- .github/PULL_REQUEST_TEMPLATE.md | 42 +++++++++-------------- 3 files changed, 17 insertions(+), 35 deletions(-) diff --git a/.github/ISSUE_TEMPLATE/bug_report.md b/.github/ISSUE_TEMPLATE/bug_report.md index d42b8bc2a..2d8c35174 100644 --- a/.github/ISSUE_TEMPLATE/bug_report.md +++ b/.github/ISSUE_TEMPLATE/bug_report.md @@ -11,7 +11,7 @@ assignees: '' A clear and concise description of what the bug is. **Steps To Reproduce** -Steps to reproduce the behavior. It **must** use tao directly instead of tauri. +Steps to reproduce the behavior. It **must** use tao directly and not tauri. **Expected behavior** A clear and concise description of what you expected to happen. @@ -23,10 +23,6 @@ If applicable, add screenshots to help explain your problem. OS: Rustc: -**Would you want to assign yourself to resolve this bug?** -- [ ] Yes -- [ ] No - **Additional context** Add any other context about the problem here. diff --git a/.github/ISSUE_TEMPLATE/feature_request.md b/.github/ISSUE_TEMPLATE/feature_request.md index bd53f1e70..0352e4c5c 100644 --- a/.github/ISSUE_TEMPLATE/feature_request.md +++ b/.github/ISSUE_TEMPLATE/feature_request.md @@ -16,10 +16,6 @@ A clear and concise description of what you want to happen. **Describe alternatives you've considered** A clear and concise description of any alternative solutions or features you've considered. -**Would you want to assign yourself to implement this feature?** -- [ ] Yes -- [ ] No - **Additional context** Add any other context or screenshots about the feature request here. diff --git a/.github/PULL_REQUEST_TEMPLATE.md b/.github/PULL_REQUEST_TEMPLATE.md index 78f25d93f..fe70b248a 100644 --- a/.github/PULL_REQUEST_TEMPLATE.md +++ b/.github/PULL_REQUEST_TEMPLATE.md @@ -1,31 +1,21 @@ - -### What kind of change does this PR introduce? - - -- [ ] Bugfix -- [ ] Feature -- [ ] Docs -- [ ] Code style update -- [ ] Refactor -- [ ] Build-related changes -- [ ] Other, please describe: +1. Give the PR a descriptive title. -### Does this PR introduce a breaking change? - + Examples of good title: + - fix(windows): fix race condition in event loop + - docs: update docstrings + - feat: add `Window::set_fullscreen` -- [ ] Yes -- [ ] No - -### Checklist -- [ ] This PR will resolve #___ -- [ ] A change file is added if any packages will require a version bump due to this PR per [the instructions in the readme](https://github.com/tauri-apps/tao/blob/dev/.changes/readme.md). -- [ ] I have added a convincing reason for adding this feature, if necessary -- [ ] It can be built on all targets and pass CI/CD. - -### Other information + Examples of bad title: + - fix #7123 + - update docs + - fix bugs +2. If there is a related issue, referenced in the PR text, e.g. closes #123. +3. If this change requires a new version, then add a change file in `.changes` directory with the appropriate bump, see https://github.com/tauri-apps/tao/blob/dev/.changes/readme.md +4. Ensure that all your commits are signed https://docs.github.com/en/authentication/managing-commit-signature-verification/signing-commits +5. Ensure `cargo test` passes. +6. Open as a draft PR if your work is still in progress. +-->