From 5e6dca1a596b85e0f1a01310603143e6c3187d63 Mon Sep 17 00:00:00 2001 From: idp-bot Date: Tue, 12 May 2026 06:36:42 +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 8c23c635..51c41711 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: 6h + tasks: 3h params: - name: doc-base diff --git a/.tekton/doc-pr-build.yaml b/.tekton/doc-pr-build.yaml index bdc240f1..49b48be3 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: