Skip to content

Commit

Permalink
Merge pull request #203 from tgharold/20240909-1059
Browse files Browse the repository at this point in the history
Allow for github.run_id > 10000000000
  • Loading branch information
schilco-rimdev authored Sep 9, 2024
2 parents 86fddbd + 4083e39 commit 96a3cfc
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -94,7 +94,7 @@ runs:
BASELINE=$(("${BASELINE}"))
echo "GHRUNID=${GHRUNID}"
echo "BASELINE=${BASELINE}"
if (( "${BASELINE}" < 5200000000 || "${BASELINE}" > 10000000000 )); then
if (( "${BASELINE}" < 5200000000 || "${BASELINE}" > 90000000000 )); then
echo "The 'inputs.github_run_id_baseline' value was not within the acceptable range."
exit 1
fi
Expand Down

0 comments on commit 96a3cfc

Please sign in to comment.