Skip to content

Commit

Permalink
fixes
Browse files Browse the repository at this point in the history
Signed-off-by: svrnm <[email protected]>
  • Loading branch information
svrnm committed Jan 22, 2024
1 parent f391dc6 commit 4b1db6e
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions .github/workflows/scripts/update-registry-versions.sh
Original file line number Diff line number Diff line change
Expand Up @@ -96,8 +96,9 @@ for yaml_file in ${FILES}; do
fi
done;

# We use the sha1sum over all version updates to uniquely identify the PR.
tag=$(echo body | sha1sum)
# We use the md5 over all version updates to uniquely identify the PR.
# md5 should be fine, since this does not have to be cryptographically secure.
tag=$(echo body | md5)
message="Update registry versions (${tag})"

existing_pr_count=$(gh pr list --state all --search "in:title $message" | wc -l)
Expand Down

0 comments on commit 4b1db6e

Please sign in to comment.