From e5603151c4961a4d1772cffd3e10cdd0ca76df79 Mon Sep 17 00:00:00 2001 From: idp-bot Date: Fri, 15 May 2026 08:46:55 +0000 Subject: [PATCH] auto update doc build config for doc pipeline --- .tekton/doc-build.yaml | 11 ++++++----- .tekton/doc-pr-build.yaml | 2 +- 2 files changed, 7 insertions(+), 6 deletions(-) diff --git a/.tekton/doc-build.yaml b/.tekton/doc-build.yaml index a1847cb..615a632 100644 --- a/.tekton/doc-build.yaml +++ b/.tekton/doc-build.yaml @@ -8,15 +8,16 @@ metadata: pipelinesascode.tekton.dev/max-keep-runs: "10" pipelinesascode.tekton.dev/on-cel-expression: |- ( - event == "push" && ( - source_branch.matches("^(main|master|release-.*)$") || - target_branch.matches("^(main|master|release-.*)$") + event == "push" && + !last_commit_title.contains("ci skip") && ( + source_branch.matches("^(main|master|release-v?[0-9]+([.][0-9]+)+)$") || + target_branch.matches("^(main|master|release-v?[0-9]+([.][0-9]+)+)$") ) ) spec: timeouts: - pipeline: 2h - tasks: 2h + pipeline: 8h + tasks: 6h params: - name: doc-base diff --git a/.tekton/doc-pr-build.yaml b/.tekton/doc-pr-build.yaml index 49ff48a..4190db5 100644 --- a/.tekton/doc-pr-build.yaml +++ b/.tekton/doc-pr-build.yaml @@ -9,7 +9,7 @@ metadata: pipelinesascode.tekton.dev/on-cel-expression: |- ( event == "pull_request" && ( - target_branch.matches("^(main|master|release-.*)$") + target_branch.matches("^(main|master|release-v?[0-9]+([.][0-9]+)+)$") ) ) spec: