Skip to content

Commit 8ea930f

Browse files
api-clients-generation-pipeline[bot]ci.datadog-api-spec
andauthored
[Software Delivery][NOTICKET] Fix ci-app-backend codeowners name (#2445)
Co-authored-by: ci.datadog-api-spec <[email protected]>
1 parent 8375ea1 commit 8ea930f

File tree

4 files changed

+33
-33
lines changed

4 files changed

+33
-33
lines changed

.apigentools-info

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -4,13 +4,13 @@
44
"spec_versions": {
55
"v1": {
66
"apigentools_version": "1.6.6",
7-
"regenerated": "2025-03-06 17:12:13.173680",
8-
"spec_repo_commit": "9dd2b6ae"
7+
"regenerated": "2025-03-06 18:30:09.334459",
8+
"spec_repo_commit": "fb234cde"
99
},
1010
"v2": {
1111
"apigentools_version": "1.6.6",
12-
"regenerated": "2025-03-06 17:12:13.188797",
13-
"spec_repo_commit": "9dd2b6ae"
12+
"regenerated": "2025-03-06 18:30:09.350543",
13+
"spec_repo_commit": "fb234cde"
1414
}
1515
}
1616
}

tests/v2/features/ci_visibility_pipelines.feature

Lines changed: 15 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -9,15 +9,15 @@ Feature: CI Visibility Pipelines
99
Given a valid "apiKeyAuth" key in the system
1010
And an instance of "CIVisibilityPipelines" API
1111

12-
@generated @skip @team:Datadog/ci-app-backend
12+
@generated @skip @team:DataDog/ci-app-backend
1313
Scenario: Aggregate pipelines events returns "Bad Request" response
1414
Given a valid "appKeyAuth" key in the system
1515
And new "AggregateCIAppPipelineEvents" request
1616
And body with value {"compute": [{"aggregation": "pc90", "interval": "5m", "metric": "@duration", "type": "total"}], "filter": {"from": "now-15m", "query": "@ci.provider.name:github AND @ci.status:error", "to": "now"}, "group_by": [{"facet": "@ci.status", "histogram": {"interval": 10, "max": 100, "min": 50}, "limit": 10, "sort": {"aggregation": "count", "order": "asc"}, "total": false}], "options": {"timezone": "GMT"}}
1717
When the request is sent
1818
Then the response status is 400 Bad Request
1919

20-
@team:Datadog/ci-app-backend
20+
@team:DataDog/ci-app-backend
2121
Scenario: Aggregate pipelines events returns "OK" response
2222
Given a valid "appKeyAuth" key in the system
2323
And new "AggregateCIAppPipelineEvents" request
@@ -26,14 +26,14 @@ Feature: CI Visibility Pipelines
2626
Then the response status is 200 OK
2727
And the response "meta.status" is equal to "done"
2828

29-
@generated @skip @team:Datadog/ci-app-backend
29+
@generated @skip @team:DataDog/ci-app-backend
3030
Scenario: Get a list of pipelines events returns "Bad Request" response
3131
Given a valid "appKeyAuth" key in the system
3232
And new "ListCIAppPipelineEvents" request
3333
When the request is sent
3434
Then the response status is 400 Bad Request
3535

36-
@team:Datadog/ci-app-backend
36+
@team:DataDog/ci-app-backend
3737
Scenario: Get a list of pipelines events returns "OK" response
3838
Given a valid "appKeyAuth" key in the system
3939
And new "ListCIAppPipelineEvents" request
@@ -44,7 +44,7 @@ Feature: CI Visibility Pipelines
4444
When the request is sent
4545
Then the response status is 200 OK
4646

47-
@replay-only @skip-validation @team:Datadog/ci-app-backend @with-pagination
47+
@replay-only @skip-validation @team:DataDog/ci-app-backend @with-pagination
4848
Scenario: Get a list of pipelines events returns "OK" response with pagination
4949
Given a valid "appKeyAuth" key in the system
5050
And new "ListCIAppPipelineEvents" request
@@ -55,23 +55,23 @@ Feature: CI Visibility Pipelines
5555
Then the response status is 200 OK
5656
And the response has 2 items
5757

58-
@generated @skip @team:Datadog/ci-app-backend
58+
@generated @skip @team:DataDog/ci-app-backend
5959
Scenario: Search pipelines events returns "Bad Request" response
6060
Given a valid "appKeyAuth" key in the system
6161
And new "SearchCIAppPipelineEvents" request
6262
And body with value {"filter": {"from": "now-15m", "query": "@ci.provider.name:github AND @ci.status:error", "to": "now"}, "options": {"timezone": "GMT"}, "page": {"cursor": "eyJzdGFydEF0IjoiQVFBQUFYS2tMS3pPbm40NGV3QUFBQUJCV0V0clRFdDZVbG8zY3pCRmNsbHJiVmxDWlEifQ==", "limit": 25}, "sort": "timestamp"}
6363
When the request is sent
6464
Then the response status is 400 Bad Request
6565

66-
@team:Datadog/ci-app-backend
66+
@team:DataDog/ci-app-backend
6767
Scenario: Search pipelines events returns "OK" response
6868
Given a valid "appKeyAuth" key in the system
6969
And new "SearchCIAppPipelineEvents" request
7070
And body with value {"filter": {"from": "now-15m", "query": "@ci.provider.name:github AND @ci.status:error", "to": "now"}, "options": {"timezone": "GMT"}, "page": {"limit": 5}, "sort": "timestamp"}
7171
When the request is sent
7272
Then the response status is 200 OK
7373

74-
@replay-only @skip-validation @team:Datadog/ci-app-backend @with-pagination
74+
@replay-only @skip-validation @team:DataDog/ci-app-backend @with-pagination
7575
Scenario: Search pipelines events returns "OK" response with pagination
7676
Given a valid "appKeyAuth" key in the system
7777
And new "SearchCIAppPipelineEvents" request
@@ -80,49 +80,49 @@ Feature: CI Visibility Pipelines
8080
Then the response status is 200 OK
8181
And the response has 2 items
8282

83-
@generated @skip @team:Datadog/ci-app-backend
83+
@generated @skip @team:DataDog/ci-app-backend
8484
Scenario: Send pipeline event returns "Bad Request" response
8585
Given new "CreateCIAppPipelineEvent" request
8686
And body with value {"data": {"attributes": {"resource": "Details TBD"}, "type": "cipipeline_resource_request"}}
8787
When the request is sent
8888
Then the response status is 400 Bad Request
8989

90-
@generated @skip @team:Datadog/ci-app-backend
90+
@generated @skip @team:DataDog/ci-app-backend
9191
Scenario: Send pipeline event returns "Payload Too Large" response
9292
Given new "CreateCIAppPipelineEvent" request
9393
And body with value {"data": {"attributes": {"resource": "Details TBD"}, "type": "cipipeline_resource_request"}}
9494
When the request is sent
9595
Then the response status is 413 Payload Too Large
9696

97-
@generated @skip @team:Datadog/ci-app-backend
97+
@generated @skip @team:DataDog/ci-app-backend
9898
Scenario: Send pipeline event returns "Request Timeout" response
9999
Given new "CreateCIAppPipelineEvent" request
100100
And body with value {"data": {"attributes": {"resource": "Details TBD"}, "type": "cipipeline_resource_request"}}
101101
When the request is sent
102102
Then the response status is 408 Request Timeout
103103

104-
@team:Datadog/ci-app-backend
104+
@team:DataDog/ci-app-backend
105105
Scenario: Send pipeline event returns "Request accepted for processing" response
106106
Given new "CreateCIAppPipelineEvent" request
107107
And body with value {"data": {"attributes": {"resource": {"level": "pipeline","unique_id": "3eacb6f3-ff04-4e10-8a9c-46e6d054024a","name": "Deploy to AWS","url": "https://my-ci-provider.example/pipelines/my-pipeline/run/1","start": "{{ timeISO('now - 120s') }}","end": "{{ timeISO('now - 30s') }}","status": "success","partial_retry": false,"git": {"repository_url": "https://github.com/DataDog/datadog-agent","sha": "7f263865994b76066c4612fd1965215e7dcb4cd2","author_email": "[email protected]"}}},"type": "cipipeline_resource_request"}}
108108
When the request is sent
109109
Then the response status is 202 Request accepted for processing
110110

111-
@team:Datadog/ci-app-backend
111+
@team:DataDog/ci-app-backend
112112
Scenario: Send pipeline event with custom provider returns "Request accepted for processing" response
113113
Given new "CreateCIAppPipelineEvent" request
114114
And body with value {"data": {"attributes": {"provider_name": "example-provider", "resource": {"level": "pipeline","unique_id": "3eacb6f3-ff04-4e10-8a9c-46e6d054024a","name": "Deploy to AWS","url": "https://my-ci-provider.example/pipelines/my-pipeline/run/1","start": "{{ timeISO('now - 120s') }}","end": "{{ timeISO('now - 30s') }}","status": "success","partial_retry": false,"git": {"repository_url": "https://github.com/DataDog/datadog-agent","sha": "7f263865994b76066c4612fd1965215e7dcb4cd2","author_email": "[email protected]"}}},"type": "cipipeline_resource_request"}}
115115
When the request is sent
116116
Then the response status is 202 Request accepted for processing
117117

118-
@skip @team:Datadog/ci-app-backend
118+
@skip @team:DataDog/ci-app-backend
119119
Scenario: Send pipeline job event returns "Request accepted for processing" response
120120
Given new "CreateCIAppPipelineEvent" request
121121
And body with value {"data": {"attributes": {"resource": {"level": "job", "id": "cf9456de-8b9e-4c27-aa79-27b1e78c1a33", "name": "Build image", "pipeline_unique_id": "3eacb6f3-ff04-4e10-8a9c-46e6d054024a", "pipeline_name": "Deploy to AWS", "start": "{{ timeISO('now - 120s') }}", "end": "{{ timeISO('now - 30s') }}", "status": "error", "url": "https://my-ci-provider.example/jobs/my-jobs/run/1"}}, "type": "cipipeline_resource_request"}}
122122
When the request is sent
123123
Then the response status is 202 Request accepted for processing
124124

125-
@team:Datadog/ci-app-backend
125+
@team:DataDog/ci-app-backend
126126
Scenario: Send running pipeline event returns "Request accepted for processing" response
127127
Given new "CreateCIAppPipelineEvent" request
128128
And body with value {"data": {"attributes": {"resource": {"level": "pipeline","unique_id": "3eacb6f3-ff04-4e10-8a9c-46e6d054024a","name": "Deploy to AWS","url": "https://my-ci-provider.example/pipelines/my-pipeline/run/1","start": "{{ timeISO('now - 120s') }}","status": "running","partial_retry": false,"git": {"repository_url": "https://github.com/DataDog/datadog-agent","sha": "7f263865994b76066c4612fd1965215e7dcb4cd2","author_email": "[email protected]"}}},"type": "cipipeline_resource_request"}}

tests/v2/features/ci_visibility_tests.feature

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -9,28 +9,28 @@ Feature: CI Visibility Tests
99
And a valid "appKeyAuth" key in the system
1010
And an instance of "CIVisibilityTests" API
1111

12-
@generated @skip @team:Datadog/ci-app-backend
12+
@generated @skip @team:DataDog/ci-app-backend
1313
Scenario: Aggregate tests events returns "Bad Request" response
1414
Given new "AggregateCIAppTestEvents" request
1515
And body with value {"compute": [{"aggregation": "pc90", "interval": "5m", "metric": "@duration", "type": "total"}], "filter": {"from": "now-15m", "query": "@test.service:web-ui-tests AND @test.status:fail", "to": "now"}, "group_by": [{"facet": "@test.service", "histogram": {"interval": 10, "max": 100, "min": 50}, "limit": 10, "sort": {"aggregation": "count", "order": "asc"}, "total": false}], "options": {"timezone": "GMT"}}
1616
When the request is sent
1717
Then the response status is 400 Bad Request
1818

19-
@team:Datadog/ci-app-backend
19+
@team:DataDog/ci-app-backend
2020
Scenario: Aggregate tests events returns "OK" response
2121
Given new "AggregateCIAppTestEvents" request
2222
And body with value {"compute": [{"aggregation": "count", "metric": "@test.is_flaky", "type": "total"}], "filter": {"from": "now-15m", "query": "@language:(python OR go)", "to": "now"}, "group_by": [{"facet": "@git.branch", "limit": 10, "sort": {"order": "asc"}, "total": false}], "options": {"timezone": "GMT"}}
2323
When the request is sent
2424
Then the response status is 200 OK
2525
And the response "meta.status" is equal to "done"
2626

27-
@generated @skip @team:Datadog/ci-app-backend
27+
@generated @skip @team:DataDog/ci-app-backend
2828
Scenario: Get a list of tests events returns "Bad Request" response
2929
Given new "ListCIAppTestEvents" request
3030
When the request is sent
3131
Then the response status is 400 Bad Request
3232

33-
@team:Datadog/ci-app-backend
33+
@team:DataDog/ci-app-backend
3434
Scenario: Get a list of tests events returns "OK" response
3535
Given new "ListCIAppTestEvents" request
3636
And request contains "filter[query]" parameter with value "@test.service:web-ui-tests"
@@ -40,7 +40,7 @@ Feature: CI Visibility Tests
4040
When the request is sent
4141
Then the response status is 200 OK
4242

43-
@replay-only @skip-validation @team:Datadog/ci-app-backend @with-pagination
43+
@replay-only @skip-validation @team:DataDog/ci-app-backend @with-pagination
4444
Scenario: Get a list of tests events returns "OK" response with pagination
4545
Given new "ListCIAppTestEvents" request
4646
And request contains "filter[from]" parameter with value "{{ timeISO('now - 30s') }}"
@@ -50,21 +50,21 @@ Feature: CI Visibility Tests
5050
Then the response status is 200 OK
5151
And the response has 2 items
5252

53-
@generated @skip @team:Datadog/ci-app-backend
53+
@generated @skip @team:DataDog/ci-app-backend
5454
Scenario: Search tests events returns "Bad Request" response
5555
Given new "SearchCIAppTestEvents" request
5656
And body with value {"filter": {"from": "now-15m", "query": "@test.service:web-ui-tests AND @test.status:fail", "to": "now"}, "options": {"timezone": "GMT"}, "page": {"cursor": "eyJzdGFydEF0IjoiQVFBQUFYS2tMS3pPbm40NGV3QUFBQUJCV0V0clRFdDZVbG8zY3pCRmNsbHJiVmxDWlEifQ==", "limit": 25}, "sort": "timestamp"}
5757
When the request is sent
5858
Then the response status is 400 Bad Request
5959

60-
@team:Datadog/ci-app-backend
60+
@team:DataDog/ci-app-backend
6161
Scenario: Search tests events returns "OK" response
6262
Given new "SearchCIAppTestEvents" request
6363
And body with value {"filter": {"from": "now-15m", "query": "@test.service:web-ui-tests AND @test.status:skip", "to": "now"}, "options": {"timezone": "GMT"}, "page": {"limit": 25}, "sort": "timestamp"}
6464
When the request is sent
6565
Then the response status is 200 OK
6666

67-
@replay-only @skip-validation @team:Datadog/ci-app-backend @with-pagination
67+
@replay-only @skip-validation @team:DataDog/ci-app-backend @with-pagination
6868
Scenario: Search tests events returns "OK" response with pagination
6969
Given new "SearchCIAppTestEvents" request
7070
And body with value {"filter": {"from": "now-15m", "query": "@test.status:pass AND -@language:python", "to": "now"}, "page": {"limit": 2}, "sort": "timestamp"}

tests/v2/features/dora_metrics.feature

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -8,47 +8,47 @@ Feature: DORA Metrics
88
Given a valid "apiKeyAuth" key in the system
99
And an instance of "DORAMetrics" API
1010

11-
@skip @team:Datadog/ci-app-backend
11+
@skip @team:DataDog/ci-app-backend
1212
Scenario: Send a deployment event for DORA Metrics returns "Bad Request" response
1313
Given operation "CreateDORADeployment" enabled
1414
And new "CreateDORADeployment" request
1515
And body with value {"data": {"attributes": {}}}
1616
When the request is sent
1717
Then the response status is 400 Bad Request
1818

19-
@skip @team:Datadog/ci-app-backend
19+
@skip @team:DataDog/ci-app-backend
2020
Scenario: Send a deployment event for DORA Metrics returns "OK - but delayed due to incident" response
2121
Given operation "CreateDORADeployment" enabled
2222
And new "CreateDORADeployment" request
2323
And body with value {"data": {"attributes": {"finished_at": 1693491984000000000, "git": {"commit_sha": "66adc9350f2cc9b250b69abddab733dd55e1a588", "repository_url": "https://github.com/organization/example-repository"}, "service": "shopist", "started_at": 1693491974000000000, "version": "v1.12.07"}}}
2424
When the request is sent
2525
Then the response status is 202 OK - but delayed due to incident
2626

27-
@replay-only @team:Datadog/ci-app-backend
27+
@replay-only @team:DataDog/ci-app-backend
2828
Scenario: Send a deployment event for DORA Metrics returns "OK" response
2929
Given operation "CreateDORADeployment" enabled
3030
And new "CreateDORADeployment" request
3131
And body with value {"data": {"attributes": {"finished_at": 1693491984000000000, "git": {"commit_sha": "66adc9350f2cc9b250b69abddab733dd55e1a588", "repository_url": "https://github.com/organization/example-repository"}, "service": "shopist", "started_at": 1693491974000000000, "version": "v1.12.07"}}}
3232
When the request is sent
3333
Then the response status is 200 OK
3434

35-
@skip @team:Datadog/ci-app-backend
35+
@skip @team:DataDog/ci-app-backend
3636
Scenario: Send an incident event for DORA Metrics returns "Bad Request" response
3737
Given operation "CreateDORAIncident" enabled
3838
And new "CreateDORAIncident" request
3939
And body with value {"data": {"attributes": {}}}
4040
When the request is sent
4141
Then the response status is 400 Bad Request
4242

43-
@generated @skip @team:Datadog/ci-app-backend
43+
@generated @skip @team:DataDog/ci-app-backend
4444
Scenario: Send an incident event for DORA Metrics returns "OK - but delayed due to incident" response
4545
Given operation "CreateDORAIncident" enabled
4646
And new "CreateDORAIncident" request
4747
And body with value {"data": {"attributes": {"env": "staging", "finished_at": 1693491984000000000, "git": {"commit_sha": "66adc9350f2cc9b250b69abddab733dd55e1a588", "repository_url": "https://github.com/organization/example-repository"}, "name": "Webserver is down failing all requests.", "services": ["shopist"], "severity": "High", "started_at": 1693491974000000000, "team": "backend", "version": "v1.12.07"}}}
4848
When the request is sent
4949
Then the response status is 202 OK - but delayed due to incident
5050

51-
@replay-only @team:Datadog/ci-app-backend
51+
@replay-only @team:DataDog/ci-app-backend
5252
Scenario: Send an incident event for DORA Metrics returns "OK" response
5353
Given operation "CreateDORAIncident" enabled
5454
And new "CreateDORAIncident" request

0 commit comments

Comments
 (0)