Refactor and small fixes #179
1 changed files with 1 additions and 1 deletions
2
.github/workflows/e2e.yml
vendored
2
.github/workflows/e2e.yml
vendored
|
|
@ -6,7 +6,7 @@ on:
|
|||
pull_request:
|
||||
|
|
||||
branches: ["main"]
|
||||
schedule:
|
||||
- cron: '* * * * *'
|
||||
- cron: '0 * * * *'
|
||||
|
||||
concurrency:
|
||||
group: e2e-tests
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue
The cron schedule
* * * * *runs every minute, which is very frequent for E2E tests. This will consume significant CI resources. Consider if this frequency is intentional compared to the previous*/30 * * * *(every 30 minutes).