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/25 09:28:48 UTC

[camel-k] branch main updated: chore(ci): validate only pkg changes

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


The following commit(s) were added to refs/heads/main by this push:
     new 295b89867 chore(ci): validate only pkg changes
295b89867 is described below

commit 295b8986793403853bdba52160e72ff01ef69373
Author: Pasquale Congiusti <pa...@gmail.com>
AuthorDate: Tue Jul 25 11:27:05 2023 +0200

    chore(ci): validate only pkg changes
---
 .github/workflows/validate.yml | 4 ++++
 1 file changed, 4 insertions(+)

diff --git a/.github/workflows/validate.yml b/.github/workflows/validate.yml
index e934d8062..abfb30782 100644
--- a/.github/workflows/validate.yml
+++ b/.github/workflows/validate.yml
@@ -22,10 +22,14 @@ on:
     branches:
       - main
       - "release-*"
+    paths:
+      - 'pkg/**'
   push:
     branches:
       - main
       - "release-*"
+    paths:
+      - 'pkg/**'
 
 concurrency:
   group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.sha }}