Remove merge queue trigger and update dependencies#563
Open
Remove merge queue trigger and update dependencies#563
Conversation
The merge queue has been removed from the main branch protection rules, so the merge_group event trigger is no longer needed. Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
Updated the following dependencies: - @typescript-eslint/eslint-plugin: ^8.57.1 → ^8.57.2 - @vitest/coverage-v8: ^4.1.0 → ^4.1.2 - happy-dom: ^20.8.4 → ^20.8.9 - pnpm: 10.32.1 → 10.33.0 - typescript-eslint: ^8.57.1 → ^8.57.2 - vite: ^8.0.1 → ^8.0.3 - vitest: ^4.1.0 → ^4.1.2 - vitest-canvas-mock: ^1.1.3 → ^1.1.4 TypeScript 6.x was excluded as typescript-eslint does not yet support it. Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
|
Coverage report for commit: 060c637 Summary - Lines: 100.00% | Methods: 100.00% | Branches: 97.22%
🤖 comment via lucassabreu/comment-coverage-clover |
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
* chore: migrate tsconfig.json for TypeScript 6 compatibility - Remove deprecated `baseUrl` and prefix all `paths` entries with `./` - Remove `allowSyntheticDefaultImports` (always enabled in TS6) Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com> * chore(deps): upgrade to TypeScript 6 and typescript-eslint 8.57.3-alpha.3 - TypeScript: ^5.9.3 → ^6.0.2 - typescript-eslint: ^8.57.2 → 8.57.3-alpha.3 - @typescript-eslint/eslint-plugin: ^8.57.2 → 8.57.3-alpha.3 The alpha release of typescript-eslint is required as the stable 8.57.2 does not yet include TypeScript 6 peer dependency support (PRs merged, pending release). Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com> --------- Co-authored-by: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
yevdyko
approved these changes
Mar 30, 2026
Contributor
yevdyko
left a comment
There was a problem hiding this comment.
Good stuff! Thanks @jamesrweb 🚀
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Related Issue
Fixes # N/A — maintenance task with no corresponding issue.
PR Type
Description
The merge queue has been removed from the main branch protection rules. This PR removes the now-unnecessary
merge_groupevent trigger from the CI workflow and updates all project dependencies to their latest compatible versions. This also closes and supersedes the open dependabot PRs (#559, #561, #562) which were failing due to the merge queue blocking auto-merge.Proposed Changes
merge_grouptrigger from.github/workflows/continuous-integration.ymlnpm-check-updatestypescript-eslintdoes not yet support itHow Has This Been Tested?
CI will validate formatting, linting, tests, and build on this PR. The CI workflow change is a trigger removal only, with no impact on job logic.
Screenshots/Recordings
N/A
Breaking Changes
Checklist
Additional Notes
This PR supersedes and replaces the following dependabot PRs which were closed:
The dependabot workflow's
gh pr merge --auto --mergestep was failing withPull request User is not authorized for this protected branch (enablePullRequestAutoMerge)because the merge queue restricted which tokens could call that GraphQL mutation. With the merge queue removed, future dependabot PRs should auto-merge successfully.🤖 Generated with Claude Code