shink commented on code in PR #4654:
URL: https://github.com/apache/incubator-inlong/pull/4654#discussion_r896389773
##########
.github/workflows/ci_docker.yml:
##########
@@ -90,7 +97,10 @@ jobs:
fi
- name: Push Docker images to Docker Hub
- if: ${{ success() && steps.match-branch.outputs.match == 'true' }}
+ if: |
+ success()
+ && steps.check-workflow-diff.outputs.changed_only == 'no'
+ && steps.match-branch.outputs.match == 'true'
Review Comment:
If only the workflow file (`.github/workflows/ci_docker.yml`) is changed,
there is no need to publish images.
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]