Flake Finder #1454
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
--- | |
name: Flake Finder | |
on: | |
schedule: | |
- cron: "0 0 * * *" | |
permissions: {} | |
jobs: | |
e2e: | |
name: E2E | |
if: github.repository_owner == 'submariner-io' | |
timeout-minutes: 30 | |
runs-on: ubuntu-latest | |
steps: | |
- name: Check out the repository | |
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 | |
- name: Run E2E deployment and tests | |
uses: submariner-io/shipyard/gh-actions/e2e@devel | |
- name: Post mortem | |
if: failure() | |
uses: submariner-io/shipyard/gh-actions/post-mortem@devel | |
- name: Raise an issue to report flaky test failure | |
if: ${{ failure() }} | |
uses: peter-evans/create-issue-from-file@e8ef132d6df98ed982188e460ebb3b5d4ef3a9cd | |
with: | |
title: Flaky Failure make e2e | |
content-filepath: .github/ISSUE_TEMPLATE/flaky_failure_automated.md | |
labels: automated, flaky failure |