From 6e66cb1df176f13d4ab7a05406d0eadc951adeb8 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Amaury=20Lev=C3=A9?= Date: Mon, 30 Mar 2026 13:20:41 +0200 Subject: [PATCH] ci: Exclude .gitignore and .github/workflows from triggering builds --- azure-pipelines-official.yml | 4 ++++ azure-pipelines.yml | 7 ++++++- 2 files changed, 10 insertions(+), 1 deletion(-) diff --git a/azure-pipelines-official.yml b/azure-pipelines-official.yml index aadb1fbec6..597b2741e6 100644 --- a/azure-pipelines-official.yml +++ b/azure-pipelines-official.yml @@ -7,6 +7,10 @@ trigger: exclude: - rel/2.* - rel/3.0.* + paths: + exclude: + - .github/** + - .gitignore parameters: - name: isRTM diff --git a/azure-pipelines.yml b/azure-pipelines.yml index 9b5c1184b7..c0d6ba49aa 100644 --- a/azure-pipelines.yml +++ b/azure-pipelines.yml @@ -3,6 +3,10 @@ trigger: include: - main - rel/* + paths: + exclude: + - .github/** + - .gitignore # Branch(es) that trigger(s) build(s) on PR pr: @@ -11,7 +15,8 @@ pr: - "*" paths: exclude: - - .github/* + - .github/** + - .gitignore - .devcontainer/* - docs/* - .vscode/*