-
Notifications
You must be signed in to change notification settings - Fork 1
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
adding run-link as output #500
base: main
Are you sure you want to change the base?
Conversation
@@ -18,10 +18,10 @@ jobs: | |||
labels: ubuntu-latest | |||
steps: | |||
- name: Checkout repository | |||
uses: actions/checkout@V4 | |||
uses: actions/checkout@<not sure what commit to use here, cant find in tags> |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
one of the recent PRs that updated this action - https://github.com/smartcontractkit/.github/pull/498/files
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Using commits/tags from: https://github.com/actions/checkout/tags
@@ -18,10 +18,10 @@ jobs: | |||
labels: ubuntu-latest | |||
steps: | |||
- name: Checkout repository | |||
uses: actions/checkout@V4 | |||
uses: actions/checkout@<not sure what commit to use here, cant find in tags> |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Using commits/tags from: https://github.com/actions/checkout/tags
@@ -57,6 +62,7 @@ runs: | |||
# Check if the maximum wait time has been exceeded | |||
if [ "$elapsed_time" -ge "$max_wait_seconds" ]; then | |||
echo "Timeout reached without job starting." | |||
echo "run-link=""" >> $GITHUB_OUTPUT |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Did you mean echo "run-link=\"\""
?
No description provided.