From 4b2dc3334c1c8597cd4e36ecf345f29b225dfd35 Mon Sep 17 00:00:00 2001 From: James Lamb Date: Mon, 2 Dec 2024 08:18:42 -0600 Subject: [PATCH] skip most CI on devcontainer-only changes (#17465) The contents of the `.devcontainer/` directory don't affect any of the artifacts produced from this repo. This proposes skipping most CI on PRs that only make changes in that directory. Authors: - James Lamb (https://github.com/jameslamb) Approvers: - Bradley Dice (https://github.com/bdice) URL: https://github.com/rapidsai/cudf/pull/17465 --- .github/workflows/pr.yaml | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/.github/workflows/pr.yaml b/.github/workflows/pr.yaml index a8afede4821..7c0bd6d52e2 100644 --- a/.github/workflows/pr.yaml +++ b/.github/workflows/pr.yaml @@ -61,6 +61,7 @@ jobs: files_yaml: | test_cpp: - '**' + - '!.devcontainer/**' - '!CONTRIBUTING.md' - '!README.md' - '!ci/cudf_pandas_scripts/**' @@ -71,6 +72,7 @@ jobs: - '!python/**' test_cudf_pandas: - '**' + - '!.devcontainer/**' - '!CONTRIBUTING.md' - '!README.md' - '!docs/**' @@ -79,6 +81,7 @@ jobs: - '!notebooks/**' test_java: - '**' + - '!.devcontainer/**' - '!CONTRIBUTING.md' - '!README.md' - '!ci/cudf_pandas_scripts/**' @@ -88,12 +91,14 @@ jobs: - '!python/**' test_notebooks: - '**' + - '!.devcontainer/**' - '!CONTRIBUTING.md' - '!README.md' - '!ci/cudf_pandas_scripts/**' - '!java/**' test_python: - '**' + - '!.devcontainer/**' - '!CONTRIBUTING.md' - '!README.md' - '!ci/cudf_pandas_scripts/**'