Skip to content

Commit 94136f0

Browse files
committed
Fix cron schedule again (#1879)
1 parent d7157bf commit 94136f0

File tree

1 file changed

+53
-0
lines changed

1 file changed

+53
-0
lines changed

catalog-info.yaml

Lines changed: 53 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,53 @@
1+
---
2+
# yaml-language-server: $schema=https://json.schemastore.org/catalog-info.json
3+
apiVersion: backstage.io/v1alpha1
4+
kind: Component
5+
metadata:
6+
name: elasticsearch-js
7+
spec:
8+
type: library
9+
owner: group:clients-team
10+
lifecycle: production
11+
12+
---
13+
# yaml-language-server: $schema=https://gist.githubusercontent.com/elasticmachine/988b80dae436cafea07d9a4a460a011d/raw/e57ee3bed7a6f73077a3f55a38e76e40ec87a7cf/rre.schema.json
14+
apiVersion: backstage.io/v1alpha1
15+
kind: Resource
16+
metadata:
17+
name: elasticsearch-js-integration-tests
18+
description: Elasticsearch JavaScript client integration tests
19+
spec:
20+
type: buildkite-pipeline
21+
owner: group:clients-team
22+
system: buildkite
23+
implementation:
24+
apiVersion: buildkite.elastic.dev/v1
25+
kind: Pipeline
26+
metadata:
27+
name: Elasticsearch JavaScript client integration tests
28+
spec:
29+
repository: elastic/elasticsearch-js
30+
pipeline_file: .buildkite/pipeline.yml
31+
teams:
32+
clients-team:
33+
access_level: MANAGE_BUILD_AND_READ
34+
everyone:
35+
access_level: READ_ONLY
36+
cancel_intermediate_builds: true
37+
cancel_intermediate_builds_branch_filter: '!main'
38+
schedules:
39+
main_semi_daily:
40+
branch: 'main'
41+
cronline: '0 */12 * * *'
42+
8_8_semi_daily:
43+
branch: '8.8'
44+
cronline: '0 */12 * * *'
45+
8_7_daily:
46+
branch: '8.7'
47+
cronline: '@daily'
48+
8_6_daily:
49+
branch: '8.6'
50+
cronline: '@daily'
51+
7_17_daily:
52+
branch: '7.17'
53+
cronline: '@daily'

0 commit comments

Comments
 (0)