-
-
Notifications
You must be signed in to change notification settings - Fork 1.9k
35 lines (31 loc) · 843 Bytes
/
Copy pathweekly-flaky-tests.yml
File metadata and controls
35 lines (31 loc) · 843 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
name: 'CI: Weekly flaky tests'
on:
workflow_dispatch:
schedule:
- cron: '0 7 * * 1'
timezone: 'Europe/Vienna'
permissions:
contents: read
actions: read
checks: read
concurrency:
group: ${{ github.workflow }}-${{ github.head_ref || github.run_id }}
cancel-in-progress: true
jobs:
report:
name: Weekly flaky test report
runs-on: ubuntu-24.04
timeout-minutes: 20
steps:
- uses: actions/checkout@v7
with:
persist-credentials: false
- name: Analyze the last seven days of develop CI
uses: actions/github-script@v9
with:
retries: 3
script: |
const { default: run } = await import(
`${process.env.GITHUB_WORKSPACE}/scripts/weekly-flaky-tests.mjs`
);
await run({ github, context, core });