Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 1 addition & 3 deletions .github/workflows/integration-tests.yml
Original file line number Diff line number Diff line change
@@ -1,8 +1,6 @@
name: Integration Tests

on:
pull_request:
branches: [main]
Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Pull request trigger accidentally removed from CI workflow

High Severity

The pull_request trigger (with branches: [main]) was removed from the on: block, but the PR title only mentions "Change runner version." Integration tests will no longer run on pull requests — only on merge_group checks and workflow_dispatch. This likely means PRs will lose integration test coverage before merging.

Fix in Cursor Fix in Web

Reviewed by Cursor Bugbot for commit 64af09d. Configure here.

merge_group:
types: [checks_requested]
workflow_dispatch:
Expand All @@ -16,7 +14,7 @@ permissions:

jobs:
integration-tests:
runs-on: ubuntu-slim
runs-on: ubuntu-24.04

steps:
- name: Check out repository
Expand Down