From 00e2589bc4de94e211e7d01adf79e0117fcfc420 Mon Sep 17 00:00:00 2001 From: idp-bot Date: Fri, 15 May 2026 09:21:43 +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 e25b4c1..51b4f5a 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 5f1cf75..7bcb657 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: