From 84633a3d89c8301dc3ef9fabc0685cbc5ac0322c Mon Sep 17 00:00:00 2001 From: oddgrd <29732646+oddgrd@users.noreply.github.com> Date: Thu, 2 Mar 2023 12:45:14 +0100 Subject: [PATCH 1/3] fix: ignore the test/resource lockfiles --- .gitignore | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.gitignore b/.gitignore index b4baecaef..6c383e5d9 100644 --- a/.gitignore +++ b/.gitignore @@ -3,6 +3,8 @@ # Generated by Cargo # will have compiled files and executables **/target/ +# Our main workspace is tracked, ignore the tests/resource lockfiles +Cargo.lock # These are backup files generated by rustfmt **/*.rs.bk From 8f8ad795a41e5a13b1b0f33b16d3a26c7d4efde0 Mon Sep 17 00:00:00 2001 From: oddgrd <29732646+oddgrd@users.noreply.github.com> Date: Thu, 2 Mar 2023 12:47:19 +0100 Subject: [PATCH 2/3] refactor: size down the pr template headers --- .github/pull_request_template.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/pull_request_template.md b/.github/pull_request_template.md index 00cdcff9a..86bbe92d9 100644 --- a/.github/pull_request_template.md +++ b/.github/pull_request_template.md @@ -1,9 +1,9 @@ -# Description of change +## Description of change Please write a summary of your changes and why you made them. Be sure to reference any related issues by adding `closes issue #`. -# How Has This Been Tested (if applicable)? +## How Has This Been Tested (if applicable)? Please describe the tests that you ran to verify your changes. From 0bd60c4bcda6543365f4b3640889aa7c093a0f64 Mon Sep 17 00:00:00 2001 From: oddgrd <29732646+oddgrd@users.noreply.github.com> Date: Thu, 2 Mar 2023 13:00:37 +0100 Subject: [PATCH 3/3] refactor: accurate Cargo.lock ignore glob --- .gitignore | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.gitignore b/.gitignore index 6c383e5d9..4b9ed654c 100644 --- a/.gitignore +++ b/.gitignore @@ -3,8 +3,8 @@ # Generated by Cargo # will have compiled files and executables **/target/ -# Our main workspace is tracked, ignore the tests/resource lockfiles -Cargo.lock +# Ignore the cargo lockfiles not in the workspace root +*/**/Cargo.lock # These are backup files generated by rustfmt **/*.rs.bk