Skip to content
Merged
Changes from 1 commit
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
2 changes: 2 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
on:
pull_request:
branches-ignore:
- 'changeset-release/*'

Copilot AI Mar 2, 2026

Copy link

Choose a reason for hiding this comment

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

Switching the workflow trigger from pull_request to push means CI will no longer run on PRs (including PRs from forks), so required checks may never execute before merge. If the intent is only to skip release branches, keep a pull_request trigger (optionally with branches-ignore: ['changeset-release/*']) and/or scope the push trigger to the branches you actually want, rather than removing PR events entirely.

Suggested change
- 'changeset-release/*'
- 'changeset-release/*'
pull_request:
branches-ignore:
- 'changeset-release/*'

Copilot uses AI. Check for mistakes.

jobs:
ci:
Expand Down