We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2ea40b1 commit 0811522Copy full SHA for 0811522
.github/workflows/pr_test_build_images.yaml
@@ -66,6 +66,9 @@ jobs:
66
# Needed for tomlq
67
pip install yq==3.4.3
68
69
+ # TODO (@NickLarsenNZ): Filter out superficial changes, eg: only comments added/removed.
70
+ # An idea: before the `xargs -r dirname` command, we can compare old and new with comments stripped.
71
+ # And keep adding rules as we need them.
72
PRODUCT_VERSION_PAIRS=$(
73
# shellcheck disable=SC2016
74
git diff --name-only "${GIT_BASE_REF}..${GIT_HEAD_REF}" \
@@ -76,7 +79,6 @@ jobs:
76
79
| jq --slurp --compact-output '.'
77
80
)
78
81
echo "product_version_pairs=$PRODUCT_VERSION_PAIRS" | tee -a "$GITHUB_OUTPUT"
-
82
outputs:
83
product_version_pairs: ${{ steps.shard.outputs.product_version_pairs }}
84
0 commit comments