From 6cd07e881138d8caf8f2e4677dd0f4e133465614 Mon Sep 17 00:00:00 2001 From: Laurent Luce Date: Tue, 10 Sep 2024 18:00:12 -0400 Subject: [PATCH] chore: Exclude docs from E2E tests (#206) Also ignore README.md in base CI. --- .github/workflows/ci-e2e-tests.yml | 6 ++++++ .github/workflows/ci.yml | 2 ++ 2 files changed, 8 insertions(+) diff --git a/.github/workflows/ci-e2e-tests.yml b/.github/workflows/ci-e2e-tests.yml index 951976bf..1eae2582 100644 --- a/.github/workflows/ci-e2e-tests.yml +++ b/.github/workflows/ci-e2e-tests.yml @@ -10,9 +10,15 @@ on: - main tags: - "v*.*.*" + paths-ignore: + - "website/**" + - "**/README.md" pull_request: branches: - main + paths-ignore: + - "website/**" + - "**/README.md" jobs: e2e_tests: diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index fb4a2a79..0a7a73f9 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -9,11 +9,13 @@ on: - "v*.*.*" paths-ignore: - "website/**" + - "**/README.md" pull_request: branches: - main paths-ignore: - "website/**" + - "**/README.md" concurrency: group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }}