Skip to content

Commit

Permalink
refactor: limit continuous fuzzing to dev branch (#1101)
Browse files Browse the repository at this point in the history
**Motivation:**

given continuous fuzzing tests takes too
long (currently ~2.5h ish), we wanna make it only run when a commit is
merged to dev branch, instead of every PR change

it should make the CI passes as a whole a lot faster, and save us huge
money spent on github actions

**Modifications:**

make continuous fuzzing only run when a commit is merged to dev branch,
instead of every PR change
  • Loading branch information
bowenli86 authored Feb 14, 2025
1 parent b6ba879 commit e203f3b
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions .github/workflows/foundry.yml
Original file line number Diff line number Diff line change
Expand Up @@ -67,6 +67,8 @@ jobs:
continuous-fuzzing:
name: Test (Intense)
runs-on: ubuntu-latest
# Only run on push events to dev branch, not on PR events
if: github.event_name == 'push' && github.ref == 'refs/heads/dev'
strategy:
fail-fast: true
steps:
Expand Down

0 comments on commit e203f3b

Please sign in to comment.