Merge pull request #427 from opencloud-eu/dev-docs

fix: fix path exclusion glob patterns
This commit is contained in:
Michael Barz
2025-03-19 11:57:40 +01:00
committed by GitHub

View File

@@ -2246,21 +2246,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 = []