Skip to content

Commit

Permalink
find-flaky-tests.yml: Remove issue_comment trigger (#602)
Browse files Browse the repository at this point in the history
It doesn't work well. `workflow_dispatch` does though, so we can use that
  • Loading branch information
julienduchesne authored Oct 9, 2024
1 parent 13d10a4 commit 9bd6dd3
Showing 1 changed file with 0 additions and 4 deletions.
4 changes: 0 additions & 4 deletions .github/workflows/find-flaky-tests.yml
Original file line number Diff line number Diff line change
@@ -1,13 +1,9 @@
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:
Expand Down

0 comments on commit 9bd6dd3

Please sign in to comment.