Skip to content

Commit

Permalink
fix: try only to PR files with NODE_VERSION change
Browse files Browse the repository at this point in the history
  • Loading branch information
nschonni committed Oct 12, 2022
1 parent 5fd8244 commit a08af58
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion build-automation.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -97,7 +97,7 @@ export default async function(github) {
process.exit(0);
}
}
const { stdout } = (await exec(`git diff`));
const { stdout } = (await exec(`git diff -G NODE_VERSION`));
console.log(stdout);

return updatedVersions.join(', ');
Expand Down
2 changes: 1 addition & 1 deletion functions.sh
Original file line number Diff line number Diff line change
Expand Up @@ -340,7 +340,7 @@ function images_updated() {
IFS=','
get_versions
)"
images_changed=$(git diff --name-only "${commit_range}" "${versions[@]}")
images_changed=$(git diff --name-only "${commit_range}" "${versions[@]}" -G NODE_VERSION)

if [ -z "${images_changed}" ]; then
return 1
Expand Down

0 comments on commit a08af58

Please sign in to comment.