add shared pkgs to trigger path for GenDocsPr pipeline

This commit is contained in:
Michael 'Flimmy' Flemming
2026-01-15 12:35:52 +01:00
parent 11b20f4ca5
commit 82c00913d3
+7 -2
View File
@@ -2250,13 +2250,18 @@ def genDocsPr(ctx):
"make git-clone",
"make all",
"make create-docs-pullrequest",
]
],
},
],
"when": [
{
"event": "push",
"path": "services/*/pkg/config/**/*.go",
"path": {
"include": [
"services/*/pkg/config/**/*.go",
"pkg/**/*.go",
],
},
"branch": "[main, stable-*]",
},
{