From df1b69880bd4c4697a840320f461fadc61c4558e Mon Sep 17 00:00:00 2001 From: Radoslav Husar Date: Wed, 3 Jul 2024 16:10:03 +0200 Subject: [PATCH] CI: skip checks on files which do not effect the build nor tests such as markdown files --- .github/workflows/ci.yml | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index c9386361..ecd0d872 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -3,9 +3,17 @@ on: push: branches: - '*' + paths-ignore: + - '.gitignore' + - '**.md' + - 'LICENSE' pull_request: branches: - '*' + paths-ignore: + - '.gitignore' + - '**.md' + - 'LICENSE' jobs: cmake-fedora-latest: