You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@camel.apache.org by or...@apache.org on 2022/10/13 10:52:57 UTC

[camel] branch main updated: (chores) ci: fixed not generating checkstyle summary on success

This is an automated email from the ASF dual-hosted git repository.

orpiske pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/camel.git


The following commit(s) were added to refs/heads/main by this push:
     new 4866d167b22 (chores) ci: fixed not generating checkstyle summary on success
4866d167b22 is described below

commit 4866d167b228167effefa176dbb43cd2adb0c39e
Author: Otavio Rodolfo Piske <an...@gmail.com>
AuthorDate: Thu Oct 13 12:52:34 2022 +0200

    (chores) ci: fixed not generating checkstyle summary on success
---
 .github/workflows/pr-build.yml | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/.github/workflows/pr-build.yml b/.github/workflows/pr-build.yml
index 01fb2cf7537..c615344c9bf 100644
--- a/.github/workflows/pr-build.yml
+++ b/.github/workflows/pr-build.yml
@@ -60,7 +60,7 @@ jobs:
         echo ":x: Checkstyle failed" >> $GITHUB_STEP_SUMMARY
         echo "" >> $GITHUB_STEP_SUMMARY
     - name: Generate successful checkstyle summary
-      if: failure()
+      if: success()
       run: |
         echo ":white_check_mark: Checkstyle passed" >> $GITHUB_STEP_SUMMARY
         echo "" >> $GITHUB_STEP_SUMMARY