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:
Karuppiah Natarajan 2021-07-13 18:50:55 +05:30
parent 2b796a0c9a
commit 3317716faf
No known key found for this signature in database
GPG Key ID: A84D7F91130A6BBE

View 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"