From 31626499d49b7a074a39a8eae03ee5049d030d48 Mon Sep 17 00:00:00 2001 From: Martin Paulucci Date: Thu, 28 Nov 2024 21:07:22 +0100 Subject: [PATCH] ci(core): fix CI skipped triggering. (#1346) **Motivation** We want to skip this on any code changes, and have it if there is **only** doc changes. Dunno if there's a better way to do it. --- .github/workflows/ci_skipped.yaml | 14 +++++++++----- 1 file changed, 9 insertions(+), 5 deletions(-) diff --git a/.github/workflows/ci_skipped.yaml b/.github/workflows/ci_skipped.yaml index c650d209bb..876951ed09 100644 --- a/.github/workflows/ci_skipped.yaml +++ b/.github/workflows/ci_skipped.yaml @@ -2,11 +2,15 @@ name: CI Skipped on: pull_request: branches: ["**"] - paths: - - 'README.md' - - 'LICENSE' - - "**/README.md" - - "**/docs/**" + paths-ignore: + - '**/*.rs' + - '**/*.toml' + - '**/*.yaml' + - '**/*.sh' + - '**/*.json' + - '**/*.rlp' + - 'Dockefile*' + jobs: lint: # "Lint" is a required check, don't change the name