mirror of
https://github.com/etcd-io/etcd.git
synced 2024-09-27 06:25:44 +00:00
workflow: add workflow to invoke script that measures percentage of commits with failed status
The workflow runs on a cron schedule on a weekly basis - once every week Fixes #13167
This commit is contained in:
parent
2b796a0c9a
commit
3317716faf
15
.github/workflows/measure-test-flakiness.yaml
vendored
Normal file
15
.github/workflows/measure-test-flakiness.yaml
vendored
Normal file
@ -0,0 +1,15 @@
|
||||
name: Measure Test Flakiness
|
||||
|
||||
on:
|
||||
schedule:
|
||||
- cron: "0 0 * * 0"
|
||||
|
||||
jobs:
|
||||
measure-test-flakiness:
|
||||
name: Measure Test Flakiness
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- name: Run script to measure test flakiness
|
||||
env:
|
||||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
||||
run: "./scripts/measure-test-flakiness.sh"
|
Loading…
x
Reference in New Issue
Block a user