Run cargo vet on PRs that modify supply-chain (#5955)

Noted in #5954 this'll report `cargo vet` status checks on PRs that
modify the `supply-chain` directory in addition to `Cargo.lock`
modifications that already happen.
This commit is contained in:
Alex Crichton
2023-03-07 13:43:28 -06:00
committed by GitHub
parent 8baf645eae
commit 8d3a881b52

View File

@@ -151,6 +151,9 @@ jobs:
if grep -q Cargo.lock names.log; then
echo audit=true >> $GITHUB_OUTPUT
fi
if grep -q supply-chain names.log; then
echo audit=true >> $GITHUB_OUTPUT
fi
fi
matrix="$(node ./ci/build-test-matrix.js ./commits.log ./names.log $run_full)"
echo "test-matrix={\"include\":$(echo $matrix)}" >> $GITHUB_OUTPUT