From 36d618914b9841927bb0e5bfd949f08b92772798 Mon Sep 17 00:00:00 2001 From: kaimen-sano Date: Sat, 6 Apr 2024 23:21:48 +1300 Subject: [PATCH] refactor: update PR template --- .github/PULL_REQUEST_TEMPLATE.md | 2 +- xtask/src/main.rs | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/PULL_REQUEST_TEMPLATE.md b/.github/PULL_REQUEST_TEMPLATE.md index dea43a99b..3b0d2b3bb 100644 --- a/.github/PULL_REQUEST_TEMPLATE.md +++ b/.github/PULL_REQUEST_TEMPLATE.md @@ -37,4 +37,4 @@ - [ ] I updated/added relevant documentation. - [ ] The code is formatted properly `cargo fmt --all --`. - [ ] Clippy doesn't report any issues `cargo clippy -- -D warnings`. -- [ ] I have regenerated the schemas if needed `cargo schema`. +- [ ] I have regenerated the schemas if needed with `just schemas`. diff --git a/xtask/src/main.rs b/xtask/src/main.rs index 7390eba7b..bb8c8bd0c 100644 --- a/xtask/src/main.rs +++ b/xtask/src/main.rs @@ -78,7 +78,7 @@ pub mod tasks { let cargo = env::var("CARGO").unwrap_or_else(|_| "cargo".to_string()); let metadata = Command::new(cargo) .current_dir(project_root()) - .args(&["metadata", "--no-deps", "--format-version", "1"]) + .args(["metadata", "--no-deps", "--format-version", "1"]) .output() .expect("Failed to fetch workspace metadata");