We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 079d1c4 commit 56fa9b4Copy full SHA for 56fa9b4
src/ci/scripts/should-skip-this.sh
@@ -14,10 +14,10 @@ elif git diff HEAD^ | grep --quiet "^index .* 160000"; then
14
# Submodules pseudo-files inside git have the 160000 permissions, so when
15
# those files are present in the diff a submodule was updated.
16
echo "Executing the job since submodules are updated"
17
-elif git diff --name-only HEAD^ | grep --quiet src/tools/clippy; then
+elif git diff --name-only HEAD^ | grep --quiet src/tools/'\(clippy\|rustfmt\)'; then
18
# There is not an easy blanket search for subtrees. For now, manually list
19
# clippy.
20
- echo "Executing the job since clippy subtree was updated"
+ echo "Executing the job since clippy or rustfmt subtree was updated"
21
else
22
echo "Not executing this job since no submodules were updated"
23
ciCommandSetEnv SKIP_JOB 1
0 commit comments