From 2dcc1ed2d634dc1574fff53febed8bc9ccb9ed9f Mon Sep 17 00:00:00 2001 From: ximon18 <3304436+ximon18@users.noreply.github.com> Date: Fri, 17 Jan 2020 09:57:42 +0100 Subject: [PATCH] Only run the E2E test if Krill changes Include rather than exclude as include might fail to run the E2E test when a new file or dir is added which _does_ affect Krill, better to run the E2E test unnecessarily than not run it when it should run. --- .github/workflows/main.yml | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 664028bb..3c777c3e 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -1,6 +1,16 @@ name: E2E Test on: push + paths-ignore: + - '.dockerignore' + - 'Changelog.md' + - 'doc/**' + - 'docker/**' + - 'Dockerfile' + - 'LICENSE' + - 'README.md' + - 'tests/**' + - 'test-resources/**' jobs: krill_e2e_test: