summaryrefslogtreecommitdiffstats
path: root/.github/workflows/pull-e2e-tests.yml
diff options
context:
space:
mode:
Diffstat (limited to '.github/workflows/pull-e2e-tests.yml')
-rw-r--r--.github/workflows/pull-e2e-tests.yml8
1 files changed, 5 insertions, 3 deletions
diff --git a/.github/workflows/pull-e2e-tests.yml b/.github/workflows/pull-e2e-tests.yml
index 611a6b0741..cf6af401f5 100644
--- a/.github/workflows/pull-e2e-tests.yml
+++ b/.github/workflows/pull-e2e-tests.yml
@@ -2,16 +2,18 @@ name: e2e-tests
on:
pull_request:
- paths-ignore:
- - "docs/**"
- - "*.md"
concurrency:
group: ${{ github.workflow }}-${{ github.head_ref || github.run_id }}
cancel-in-progress: true
jobs:
+ files-changed:
+ uses: ./.github/workflows/files-changed.yml
+
test-e2e:
+ if: needs.files-changed.outputs.backend == 'true' || needs.files-changed.outputs.frontend == 'true'
+ needs: files-changed
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3