-
Notifications
You must be signed in to change notification settings - Fork 21
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
Resolved issue with 'dummy' image to prevent a single build failure f… #208
Resolved issue with 'dummy' image to prevent a single build failure f… #208
Conversation
46f6c78
to
640f1c5
Compare
@PPathu can you split out the comment in the Python script into a separate commit? It's not related to the current commit message. |
c663077
to
4785176
Compare
Hey Pratham, can you reword your commits and PR title to be in the imperative mood? i.e. "Add important implementation...", "Resolve issue with...". See https://dev.to/ruanbrandao/how-to-make-good-git-commits-256k |
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.
Also, I think there's a more straightforward way to solve this. See comments below
@@ -98,7 +101,7 @@ jobs: | |||
build: | |||
runs-on: ubuntu-latest | |||
needs: build-image-list | |||
if: needs.build-image-list.outputs.images != '["dummy"]' | |||
if: ${{ needs.build-image-list.outputs.image_list != '["dummy"]' }} |
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.
if: ${{ needs.build-image-list.outputs.image_list != '["dummy"]' }} | |
if: ${{ needs.build-image-list.outputs.image_list != 'dummy' }} |
4785176
to
5126b0e
Compare
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.
LGTM
Fixed a small bug so the 'dummy' image doesn't kill the entire workflow. Also, added an important detail to the comment in the python script.