Skip to content

Commit 04dc1e3

Browse files
Merge branch 'master' into juan-fernandez/fix-vitest-performance
2 parents 9e3f09f + 7f44491 commit 04dc1e3

File tree

50 files changed

+1377
-602
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

50 files changed

+1377
-602
lines changed

.github/workflows/all-green.yml

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,6 @@ on:
66
- master
77
schedule:
88
- cron: 0 4 * * *
9-
- cron: 20 4 * * *
10-
- cron: 40 4 * * *
119

1210
concurrency:
1311
group: ${{ github.workflow }}-${{ github.ref || github.run_id }}
@@ -23,5 +21,6 @@ jobs:
2321
steps:
2422
- uses: wechuli/allcheckspassed@e22f45a4f25f4cf821d1273705ac233355400db1 # v1.2.0
2523
with:
26-
retries: 20 # once per minute, some checks take up to 15 min
24+
retries: 30 # once per minute, some checks take up to 15 min, retries are possible
2725
checks_exclude: devflow.*
26+
fail_fast: false

.github/workflows/apm-capabilities.yml

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,6 @@ on:
66
branches: [master]
77
schedule:
88
- cron: 0 4 * * *
9-
- cron: 20 4 * * *
10-
- cron: 40 4 * * *
119

1210
concurrency:
1311
group: ${{ github.workflow }}-${{ github.ref || github.run_id }}

.github/workflows/apm-integrations.yml

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,6 @@ on:
66
branches: [master]
77
schedule:
88
- cron: 0 4 * * *
9-
- cron: 20 4 * * *
10-
- cron: 40 4 * * *
119

1210
concurrency:
1311
group: ${{ github.workflow }}-${{ github.ref || github.run_id }}

.github/workflows/appsec.yml

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,6 @@ on:
66
branches: [master]
77
schedule:
88
- cron: 0 4 * * *
9-
- cron: 20 4 * * *
10-
- cron: 40 4 * * *
119

1210
concurrency:
1311
group: ${{ github.workflow }}-${{ github.ref || github.run_id }}

.github/workflows/debugger.yml

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,6 @@ on:
66
branches: [master]
77
schedule:
88
- cron: 0 4 * * *
9-
- cron: 20 4 * * *
10-
- cron: 40 4 * * *
119

1210
concurrency:
1311
group: ${{ github.workflow }}-${{ github.ref || github.run_id }}

.github/workflows/flakiness.yml

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
name: Flakiness Report
2+
3+
on:
4+
schedule:
5+
- cron: '0 6 * * *'
6+
7+
jobs:
8+
flakiness:
9+
runs-on: ubuntu-latest
10+
permissions:
11+
actions: read
12+
env:
13+
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
14+
steps:
15+
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
16+
- uses: ./.github/actions/node
17+
with:
18+
version: ''
19+
- run: node scripts/flakiness.mjs

.github/workflows/lambda.yml

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,6 @@ on:
66
branches: [master]
77
schedule:
88
- cron: 0 4 * * *
9-
- cron: 20 4 * * *
10-
- cron: 40 4 * * *
119

1210
concurrency:
1311
group: ${{ github.workflow }}-${{ github.ref || github.run_id }}

.github/workflows/llmobs.yml

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,6 @@ on:
66
branches: [master]
77
schedule:
88
- cron: 0 4 * * *
9-
- cron: 20 4 * * *
10-
- cron: 40 4 * * *
119

1210
concurrency:
1311
group: ${{ github.workflow }}-${{ github.ref || github.run_id }}

.github/workflows/platform.yml

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,6 @@ on:
66
branches: [master]
77
schedule:
88
- cron: 0 4 * * *
9-
- cron: 20 4 * * *
10-
- cron: 40 4 * * *
119

1210
concurrency:
1311
group: ${{ github.workflow }}-${{ github.ref || github.run_id }}

.github/workflows/profiling.yml

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,6 @@ on:
66
branches: [master]
77
schedule:
88
- cron: 0 4 * * *
9-
- cron: 20 4 * * *
10-
- cron: 40 4 * * *
119

1210
concurrency:
1311
group: ${{ github.workflow }}-${{ github.ref || github.run_id }}

0 commit comments

Comments
 (0)