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 0443549 (chores) ci: fine tune the paths that may trigger a build on
push or PR
0443549 is described below
commit 0443549be1212bdaba123c8745e2e01d1b01022a
Author: Otavio Rodolfo Piske <[email protected]>
AuthorDate: Fri Apr 1 16:22:51 2022 +0200
(chores) ci: fine tune the paths that may trigger a build on push or PR
---
.github/workflows/master-pr-build.yml | 6 ++++++
.github/workflows/master-push-build.yml | 8 ++++++++
2 files changed, 14 insertions(+)
diff --git a/.github/workflows/master-pr-build.yml
b/.github/workflows/master-pr-build.yml
index c488565..6cf4b91 100644
--- a/.github/workflows/master-pr-build.yml
+++ b/.github/workflows/master-pr-build.yml
@@ -21,6 +21,12 @@ on:
pull_request:
branches:
- main
+ paths-ignore:
+ - README.md
+ - SECURITY.md
+ - Jenkinsfile
+ - Jenkinsfile.*
+ - NOTICE.txt
jobs:
checkstyle:
diff --git a/.github/workflows/master-push-build.yml
b/.github/workflows/master-push-build.yml
index 5d10bd5..1828324 100644
--- a/.github/workflows/master-push-build.yml
+++ b/.github/workflows/master-push-build.yml
@@ -21,6 +21,14 @@ on:
push:
branches:
- main
+ paths-ignore:
+ - .github/**/*
+ - README.md
+ - SECURITY.md
+ - Jenkinsfile
+ - Jenkinsfile.*
+ - NOTICE.txt
+
jobs:
build:
runs-on: ubuntu-latest