From 42ab1336c7f4d10bc7549a2f8734a22b6cba279b Mon Sep 17 00:00:00 2001 From: dicethedev Date: Thu, 7 May 2026 01:29:20 +0100 Subject: [PATCH 1/4] chore: remove placeholder text from pull request template --- .github/PULL_REQUEST_TEMPLATE.md | 2 -- 1 file changed, 2 deletions(-) diff --git a/.github/PULL_REQUEST_TEMPLATE.md b/.github/PULL_REQUEST_TEMPLATE.md index a6fb5527..a85d8af7 100644 --- a/.github/PULL_REQUEST_TEMPLATE.md +++ b/.github/PULL_REQUEST_TEMPLATE.md @@ -1,5 +1,3 @@ -# Pull Request Template - ## 🗒️ Description / Motivation - What does this PR change? - Why is this change needed? From d5565802c01b5acc2121359451edb0d9ae9ef05a Mon Sep 17 00:00:00 2001 From: dicethedev Date: Thu, 7 May 2026 01:33:53 +0100 Subject: [PATCH 2/4] chore: add formatting and test checklist to PR template --- .github/PULL_REQUEST_TEMPLATE.md | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/.github/PULL_REQUEST_TEMPLATE.md b/.github/PULL_REQUEST_TEMPLATE.md index a85d8af7..8bb0b5a3 100644 --- a/.github/PULL_REQUEST_TEMPLATE.md +++ b/.github/PULL_REQUEST_TEMPLATE.md @@ -18,3 +18,11 @@ ## Related Issues / PRs - Closes # - Related to # + +## ✅ Verification Checklist + +- [ ] Ran `cargo fmt --check` +- [ ] Ran `cargo fmt` +- [ ] Ran `cargo check` +- [ ] Ran relevant tests +- [ ] Verified no diff issues with `git diff --check` \ No newline at end of file From 73ec0ca8585e4bf1d4e92cc5ec43b5366ddbfed3 Mon Sep 17 00:00:00 2001 From: dicethedev Date: Thu, 7 May 2026 01:42:03 +0100 Subject: [PATCH 3/4] chore: update PR template verification checklist (make fmt/lint/tests) --- .github/PULL_REQUEST_TEMPLATE.md | 8 +++----- 1 file changed, 3 insertions(+), 5 deletions(-) diff --git a/.github/PULL_REQUEST_TEMPLATE.md b/.github/PULL_REQUEST_TEMPLATE.md index 8bb0b5a3..80db5ad1 100644 --- a/.github/PULL_REQUEST_TEMPLATE.md +++ b/.github/PULL_REQUEST_TEMPLATE.md @@ -21,8 +21,6 @@ ## ✅ Verification Checklist -- [ ] Ran `cargo fmt --check` -- [ ] Ran `cargo fmt` -- [ ] Ran `cargo check` -- [ ] Ran relevant tests -- [ ] Verified no diff issues with `git diff --check` \ No newline at end of file +- [ ] `make fmt` — clean +- [ ] `make lint` (clippy with `-D warnings`) — clean +- [ ] `cargo test --workspace --release` — all passing \ No newline at end of file From 7fd66b839097b5826884eca7fb0e09b782f90032 Mon Sep 17 00:00:00 2001 From: dicethedev Date: Thu, 7 May 2026 01:43:46 +0100 Subject: [PATCH 4/4] little changes --- .github/PULL_REQUEST_TEMPLATE.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/PULL_REQUEST_TEMPLATE.md b/.github/PULL_REQUEST_TEMPLATE.md index 80db5ad1..f58c7cee 100644 --- a/.github/PULL_REQUEST_TEMPLATE.md +++ b/.github/PULL_REQUEST_TEMPLATE.md @@ -21,6 +21,6 @@ ## ✅ Verification Checklist -- [ ] `make fmt` — clean -- [ ] `make lint` (clippy with `-D warnings`) — clean -- [ ] `cargo test --workspace --release` — all passing \ No newline at end of file +- [ ] Ran `make fmt` — clean +- [ ] Ran `make lint` (clippy with `-D warnings`) — clean +- [ ] Ran `cargo test --workspace --release` — all passing \ No newline at end of file