From f94ce69f14ac7e0c842e8e3b861be9a6db8f6587 Mon Sep 17 00:00:00 2001 From: Wolf Vollprecht Date: Mon, 26 Aug 2024 11:02:49 +0200 Subject: [PATCH] re-enable skipping jobs when only docs have changed --- .github/workflows/end-to-end.yml | 10 ++++++++++ .github/workflows/rust.yml | 4 +++- 2 files changed, 13 insertions(+), 1 deletion(-) diff --git a/.github/workflows/end-to-end.yml b/.github/workflows/end-to-end.yml index 82e7b310..3890c62f 100644 --- a/.github/workflows/end-to-end.yml +++ b/.github/workflows/end-to-end.yml @@ -1,7 +1,17 @@ on: push: branches: [ main ] + paths: + - "src/**" + - "Cargo.*" + - "rust-tests/**" + - "test/end-to-end/**" pull_request: + paths: + - "src/**" + - "Cargo.*" + - "rust-tests/**" + - "test/end-to-end/**" name: End-to-End testing diff --git a/.github/workflows/rust.yml b/.github/workflows/rust.yml index 05e5db87..33d2ddae 100644 --- a/.github/workflows/rust.yml +++ b/.github/workflows/rust.yml @@ -4,7 +4,9 @@ on: tags: - "v*.*.*" pull_request: - + paths: + - "src/**" + - "Cargo.*" workflow_dispatch: name: CI