From c11b38ace040b3126744ab7b60722e2fb0a1be65 Mon Sep 17 00:00:00 2001 From: ionutboangiu Date: Thu, 10 Oct 2024 13:23:29 +0300 Subject: [PATCH] Add paths-ignore to skip CI for docs and README changes --- .github/workflows/build.yaml | 12 ++++++++++-- .github/workflows/integration_tests.yaml | 12 ++++++++++-- 2 files changed, 20 insertions(+), 4 deletions(-) diff --git a/.github/workflows/build.yaml b/.github/workflows/build.yaml index 3acef0126..c438e1b20 100644 --- a/.github/workflows/build.yaml +++ b/.github/workflows/build.yaml @@ -4,9 +4,17 @@ permissions: {} on: push: - branches: [master] + branches: + - master + paths-ignore: + - 'docs/**' + - README.md pull_request: - branches: [master] + branches: + - master + paths-ignore: + - 'docs/**' + - README.md workflow_dispatch: jobs: diff --git a/.github/workflows/integration_tests.yaml b/.github/workflows/integration_tests.yaml index 0b2121a79..002db60b9 100644 --- a/.github/workflows/integration_tests.yaml +++ b/.github/workflows/integration_tests.yaml @@ -2,9 +2,17 @@ name: Integration Tests on: push: - branches: [master] + branches: + - master + paths-ignore: + - 'docs/**' + - README.md pull_request: - branches: [master] + branches: + - master + paths-ignore: + - 'docs/**' + - README.md workflow_dispatch: jobs: