Memberlist: support for debouncing notifications #20
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: Find flaky tests | |
on: | |
issue_comment: | |
types: [created] | |
workflow_dispatch: | |
jobs: | |
find-flaky-tests: | |
# Only run this workflow when the comment contains '/find-flaky-tests' or it's manually triggered | |
if: contains(github.event.comment.body, '/find-flaky-tests') || github.event_name == 'workflow_dispatch' | |
strategy: | |
fail-fast: false | |
matrix: | |
runs: [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20] # Run the build workflow 20 times | |
uses: ./.github/workflows/test-build.yml | |
with: | |
concurrency-group: '-find-flaky-tests-${{ matrix.runs }}' |