From 3e85b9280d7f868a51ad409392d07af7560d0186 Mon Sep 17 00:00:00 2001 From: Jon Perry Date: Wed, 10 Apr 2024 15:48:58 -0400 Subject: [PATCH] bug: fix catch-all wildcard for e2e workflow --- .github/workflows/e2e.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/e2e.yaml b/.github/workflows/e2e.yaml index 24cf083d6..298626e03 100644 --- a/.github/workflows/e2e.yaml +++ b/.github/workflows/e2e.yaml @@ -3,7 +3,7 @@ on: pull_request: paths: # Catch-all - - "*" + - "**" # Ignore updates to the .github directory, unless it's this current file - "!.github/**"