Skip to content

Commit

Permalink
workflow: add workflow to invoke script that measures percentage of c…
Browse files Browse the repository at this point in the history
…ommits with failed status

The workflow runs on a cron schedule on a weekly basis - once every week

Fixes etcd-io#13167
  • Loading branch information
karuppiah7890 committed Jul 13, 2021
1 parent 2b796a0 commit 3317716
Showing 1 changed file with 15 additions and 0 deletions.
15 changes: 15 additions & 0 deletions .github/workflows/measure-test-flakiness.yaml
Original file line number Diff line number Diff line change
@@ -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"

0 comments on commit 3317716

Please sign in to comment.