diff --git a/.github/PULL_REQUEST_TEMPLATE.md b/.github/PULL_REQUEST_TEMPLATE.md index dea43a99..3b0d2b3b 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 7390eba7..bb8c8bd0 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");