-
-
Notifications
You must be signed in to change notification settings - Fork 13
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
updated the outputs in readme.md #22
base: main
Are you sure you want to change the base?
Conversation
@@ -108,18 +108,16 @@ in security breach "dangerous") side-effects. | |||
|
|||
### ``failure`` | |||
|
|||
Whether this check decided that the job matrix failed. | |||
|
|||
This check determines whether the job matrix has failed and returns the status as `success`. |
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.
This doesn't look right. Why would failure be a success?
|
||
### ``result`` | ||
|
||
Failure or success result of the job matrix. | ||
returns `failure` or `success` as result of the job matrix. |
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's probably worth noting that these are strings and make the sentence start with a capital letter.
returns `failure` or `success` as result of the job matrix. | |
Returns `'failure'` or `'success'` as result of the job matrix. |
|
||
|
||
### ``success`` | ||
|
||
Whether this check decided that the job matrix succeeded. | ||
|
||
This check determines whether the job matrix has succeeded and returns the status as `success`. |
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.
I don't think this is correct. Pretty sure, both success
and failure
outputs are true
or false
. Only result
contains a string 'success'
or 'failure'
.
Resolves #21