From 6769e25a98454972621703b9cb5a3aaf0ce2376b Mon Sep 17 00:00:00 2001 From: Volodymyr Zotov Date: Thu, 11 Sep 2025 11:49:09 -0500 Subject: [PATCH] Do not run e2e tests when making a change on documentation or not realted to the operator files --- .github/workflows/test-e2e.yml | 14 ++++++++++++++ 1 file changed, 14 insertions(+) diff --git a/.github/workflows/test-e2e.yml b/.github/workflows/test-e2e.yml index 39a0384..bc6192d 100644 --- a/.github/workflows/test-e2e.yml +++ b/.github/workflows/test-e2e.yml @@ -3,9 +3,23 @@ name: Test E2E on: push: branches: [main] + paths-ignore: + - 'docs/**' + - '*.md' + - '.golangci.yml' + - '.gitignore' + - '.dockerignore' + - 'LICENSE' pull_request: types: [opened, synchronize, reopened] branches: ['**'] # run for PRs targeting any branch (main and others) + paths-ignore: + - 'docs/**' + - '*.md' + - '.golangci.yml' + - '.gitignore' + - '.dockerignore' + - 'LICENSE' concurrency: group: e2e-${{ github.event.pull_request.head.ref }}