You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@camel.apache.org by pc...@apache.org on 2023/07/14 12:54:44 UTC

[camel-k] branch main updated (d9975a7db -> e4a5a0eaf)

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

pcongiusti pushed a change to branch main
in repository https://gitbox.apache.org/repos/asf/camel-k.git


    omit d9975a7db fix(ci): run test
     new e4a5a0eaf fix(ci): run test

This update added new revisions after undoing existing revisions.
That is to say, some revisions that were in the old version of the
branch are not in the new version.  This situation occurs
when a user --force pushes a change and generates a repository
containing something like this:

 * -- * -- B -- O -- O -- O   (d9975a7db)
            \
             N -- N -- N   refs/heads/main (e4a5a0eaf)

You should already have received notification emails for all of the O
revisions, and so the following emails describe only the N revisions
from the common base, B.

Any revisions marked "omit" are not gone; other references still
refer to them.  Any revisions marked "discard" are gone forever.

The 1 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "add" were already present in the repository and have only
been added to this reference.


Summary of changes:


[camel-k] 01/01: fix(ci): run test

Posted by pc...@apache.org.
This is an automated email from the ASF dual-hosted git repository.

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

commit e4a5a0eaf6986cf9b69c7c9c761e72b6337707d0
Author: Pasquale Congiusti <pa...@gmail.com>
AuthorDate: Fri Jul 14 14:29:40 2023 +0200

    fix(ci): run test
---
 .github/actions/automatic-updates/action.yml    | 5 +++++
 .github/workflows/nightly-automatic-updates.yml | 2 +-
 2 files changed, 6 insertions(+), 1 deletion(-)

diff --git a/.github/actions/automatic-updates/action.yml b/.github/actions/automatic-updates/action.yml
index ceb585581..57a30c754 100644
--- a/.github/actions/automatic-updates/action.yml
+++ b/.github/actions/automatic-updates/action.yml
@@ -77,6 +77,11 @@ runs:
         git add camel-k-sbom/camel-k-sbom.json && git commit -m 'chore: nightly SBOM update' && echo "sbom=1" >> $GITHUB_ENV || echo "No changes to SBOM"
 
     # Coverage badge
+    - name: Run Test
+      run: |
+        go test -v ./... -covermode=count -coverprofile=coverage.out
+        go tool cover -func=coverage.out -o=coverage.out
+        touch badge.out
     - name: Go Coverage Badge
       uses: ./.github/actions/coverage-badge
       with:
diff --git a/.github/workflows/nightly-automatic-updates.yml b/.github/workflows/nightly-automatic-updates.yml
index fcbca7ada..7e44fb83a 100644
--- a/.github/workflows/nightly-automatic-updates.yml
+++ b/.github/workflows/nightly-automatic-updates.yml
@@ -42,7 +42,7 @@ jobs:
         ref: ${{ matrix.ref-branch }}
         persist-credentials: false
         submodules: recursive
-    - name: Automatic updates on main
+    - name: "Run upgrade action"
       uses: ./.github/actions/automatic-updates
       with:
         branch-ref: ${{ matrix.ref-branch }}