From a6650923738b6283c4775cde1105f38f410fbbc0 Mon Sep 17 00:00:00 2001 From: Martin Paulucci Date: Fri, 29 Nov 2024 16:32:28 +0100 Subject: [PATCH] ci(core): fix path filtering on ci_skipped workflow. (#1354) **Motivation** We want `ci_skipped` to run whenever there were changes to doc files, but we don't want to run it if there are changes to code. See documentation: https://docs.github.com/en/actions/writing-workflows/workflow-syntax-for-github-actions#example-including-and-excluding-paths --- .github/workflows/ci_skipped.yaml | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/.github/workflows/ci_skipped.yaml b/.github/workflows/ci_skipped.yaml index c650d209b..9d3adf9af 100644 --- a/.github/workflows/ci_skipped.yaml +++ b/.github/workflows/ci_skipped.yaml @@ -7,6 +7,14 @@ on: - 'LICENSE' - "**/README.md" - "**/docs/**" + - '!**/*.rs' + - '!**/*.toml' + - '!**/*.yaml' + - '!**/*.sh' + - '!**/*.json' + - '!**/*.rlp' + - '!**Dockefile' + - '!**Makefile' jobs: lint: # "Lint" is a required check, don't change the name