Add filter to list repository pipelines API (#4416)

This commit is contained in:
6543
2024-11-28 22:33:52 +01:00
committed by GitHub
parent 9fedc88a9c
commit 52fb493495
7 changed files with 95 additions and 15 deletions

View File

@@ -2966,6 +2966,24 @@ const docTemplate = `{
"description": "only return pipelines after this RFC3339 date",
"name": "after",
"in": "query"
},
{
"type": "string",
"description": "filter pipelines by branch",
"name": "branch",
"in": "query"
},
{
"type": "string",
"description": "filter pipelines by webhook events (comma separated)",
"name": "event",
"in": "query"
},
{
"type": "string",
"description": "filter pipelines by strings contained in ref",
"name": "ref",
"in": "query"
}
],
"responses": {