From eec50c183c51a32f9afc47398e0a5bf660594f78 Mon Sep 17 00:00:00 2001 From: Alan Carvalho de Assis Date: Thu, 21 Aug 2025 09:33:12 -0300 Subject: [PATCH] build.yml: Excludes the workflow run if the file is CONTRIBUTING.md CI does not compile everything for a simple modification of the CONTRIBUTING.md file. Signed-off-by: Alan C. Assis --- .github/workflows/build.yml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 98e3980ee9..183f2fa6a2 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -16,11 +16,13 @@ on: pull_request: paths-ignore: - 'AUTHORS' + - 'CONTRIBUTING.md' - 'Documentation/**' - 'tools/ci/docker/linux/**' push: paths-ignore: - 'AUTHORS' + - 'CONTRIBUTING.md' - 'Documentation/**' branches: - 'releases/*' @@ -389,4 +391,4 @@ jobs: with: name: msvc-builds path: ./sources/buildartifacts/ - continue-on-error: true \ No newline at end of file + continue-on-error: true