Skip to content
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

Fix the issue with "Post Check SVG" posting the wrong message #515

Merged
merged 1 commit into from
Feb 23, 2021

Conversation

Thomas-Boi
Copy link
Member

I think I figure out the issue.

Here's what we want the bot to do:
Post a failure message if value is a text. This means the code is not 1 aka SVG_STATUS_CODE.SVG_OK or 0 aka SVG_STATUS_CODE.NO_SVG

Here's what the old check is:

(steps.err_message_reader.outputs.content != '0' || steps.err_message_reader.outputs.content != '1')

However, this would be interpreted differently by the script. If the error_message is 1, it will trip the first check. If the error_message is 0, it will trip the second cause OR operators check terms until one is true.

Pretty much, this is the wrong check. Using OR in human language is different than OR in computer and I forgot to "translate" it.

Here's the new check:

(steps.err_message_reader.outputs.content != '0' && steps.err_message_reader.outputs.content != '1')

This will ensure that only contents that don't match both 0 and 1 trigger the script.

This should work.

@Thomas-Boi Thomas-Boi requested a review from amacado February 23, 2021 19:04
@github-actions

This comment has been minimized.

@Thomas-Boi Thomas-Boi linked an issue Feb 23, 2021 that may be closed by this pull request
@amacado amacado added devops Use this label for devops related enhancements enhancement labels Feb 23, 2021
@amacado amacado changed the base branch from master to develop February 23, 2021 21:57
@amacado amacado merged commit c841a95 into develop Feb 23, 2021
@amacado amacado deleted the thomas/feature/actionBugFix branch February 23, 2021 21:58
@amacado amacado mentioned this pull request Feb 23, 2021
1 task
GCHQDeveloper926 pushed a commit to GCHQDeveloper926/devicon that referenced this pull request Dec 20, 2024
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
devops Use this label for devops related enhancements enhancement
Projects
None yet
Development

Successfully merging this pull request may close these issues.

"Post Check SVG" action is not working as expected
2 participants