From 738ca3d7a5c7adef767892403e814884a3c8c32c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Gonzalo=20Gabriel=20Jim=C3=A9nez=20Fuentes?= Date: Thu, 23 Sep 2021 15:33:29 +0200 Subject: [PATCH] ci: limit e2e tests to specific paths --- .github/workflows/e2e.yml | 18 +++++++++++++++++- 1 file changed, 17 insertions(+), 1 deletion(-) diff --git a/.github/workflows/e2e.yml b/.github/workflows/e2e.yml index 0183aad1..daa93289 100644 --- a/.github/workflows/e2e.yml +++ b/.github/workflows/e2e.yml @@ -3,9 +3,25 @@ name: e2e on: push: branches: [ "*" ] + paths: + - 'api/*' + - 'controllers/*' + - 'e2e/*' + - 'Dockerfile' + - 'go.*' + - 'main.go' + - 'Makefile' pull_request: branches: [ "*" ] - + paths: + - 'api/*' + - 'controllers/*' + - 'e2e/*' + - 'Dockerfile' + - 'go.*' + - 'main.go' + - 'Makefile' + jobs: kind: name: Kubernetes