From 84183842094d33cb6ca91a930aa930a75017b029 Mon Sep 17 00:00:00 2001 From: Michael Barz Date: Tue, 18 Mar 2025 17:59:12 +0100 Subject: [PATCH] fix: correct exclude path glob patterns --- .woodpecker.star | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/.woodpecker.star b/.woodpecker.star index 64c5a56dfe..b4bf8485fc 100644 --- a/.woodpecker.star +++ b/.woodpecker.star @@ -2247,21 +2247,21 @@ def skipIfUnchanged(ctx, type): return [] base = [ - "^.github/.*", - "^.vscode/.*", - "^changelog/.*", - "^docs/.*", - "^deployments/.*", + ".github/**", + ".vscode/**", + "changelog/**", + "docs/**", + "deployments/**", "CHANGELOG.md", "CONTRIBUTING.md", "LICENSE", "README.md", ] unit = [ - ".*_test.go$", + "**/*_test.go", ] acceptance = [ - "^tests/acceptance/.*", + "tests/acceptance/**", ] skip = []