fix: correct exclude path glob patterns
This commit is contained in:
+7
-7
@@ -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 = []
|
||||
|
||||
Reference in New Issue
Block a user