Refactor and small fixes #179

Merged
schmelczer merged 17 commits from asch/refactor into main 2025-12-07 16:42:23 +00:00
Showing only changes of commit 3e7e1da7f5 - Show all commits

View file

@ -6,7 +6,7 @@ on:
pull_request:
copilot-pull-request-reviewer[bot] commented 2025-12-07 16:40:44 +00:00 (Migrated from github.com)

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).

    - cron: '*/30 * * * *'
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). ```suggestion - cron: '*/30 * * * *' ```
branches: ["main"]
schedule:
- cron: '* * * * *'
- cron: '0 * * * *'
concurrency:
group: e2e-tests