Do not run e2e tests when making a change on documentation or not realted to the operator files

This commit is contained in:
Volodymyr Zotov
2025-09-11 11:49:09 -05:00
parent d8734c9ae3
commit 6769e25a98

View File

@@ -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 }}