Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
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
ci: DOC-228: Docs PR preview action #1107
ci: DOC-228: Docs PR preview action #1107
Changes from 20 commits
54fd3fd
edfd476
836b33b
2bb7e70
8a63999
766c127
20e0a2d
b8fd863
403f064
babcecc
f06889d
bec1ff4
56364bf
63bf7b8
5bb534d
bc99141
c5ed366
cf170be
4868da7
3c4f2cb
c9108a5
File filter
Filter by extension
Conversations
Jump to
There are no files selected for viewing
This file was deleted.
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.
Why is this checking against the string
'true'
instead of just checkinginputs.js
? Seems like this should be aboolean
based on the type, not astring
.https://docs.github.com/en/actions/sharing-automations/creating-actions/metadata-syntax-for-github-actions#inputs
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.
The boolean flag is a lie (or at least was and Github just hangs when I try to load more to see what the actual resolution of this ticket was) See here
I'm 99% sure it's still a string value and the boolean just helps with documentation or for manual dispatch actions it shows a checkbox.
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.
Though I see this checks
.files_exists
against'true'
as well, and that matches the documentation: https://github.com/andstor/file-existence-actionDon't get why it's not a bool...
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.
It actually turns inputs/outputs into environment variables, so they're always strings
This file was deleted.