Skip to content

Commit c04f32d

Browse files
authored
ci: Replace local check merge queue action with github-tools version (#7538)
## Explanation The `check-merge-queue` action was moved to `github-tools` so it can be reused by other repositories. ## References <!-- Are there any issues that this pull request is tied to? Are there other links that reviewers should consult to understand these changes better? Are there client or consumer pull requests to adopt any breaking changes? For example: * Fixes #12345 * Related to #67890 --> ## Checklist - [ ] I've updated the test suite for new or updated code as appropriate - [ ] I've updated documentation (JSDoc, Markdown, etc.) for new or updated code as appropriate - [ ] I've communicated my changes to consumers by [updating changelogs for packages I've changed](https://github.com/MetaMask/core/tree/main/docs/contributing.md#updating-changelogs) - [ ] I've introduced [breaking changes](https://github.com/MetaMask/core/tree/main/docs/breaking-changes.md) in this PR and have prepared draft pull requests for clients and consumer packages to resolve them <!-- CURSOR_SUMMARY --> --- > [!NOTE] > Switches the merge-queue check to the shared `MetaMask/github-tools` action and deletes the local implementation. > > - **CI**: > - Replace local `check-merge-queue` composite action with `MetaMask/github-tools/.github/actions/check-skip-merge-queue@v1` in `.github/workflows/main.yml`. > - Remove `.github/actions/check-merge-queue/action.yml` local action. > > <sup>Written by [Cursor Bugbot](https://cursor.com/dashboard?tab=bugbot) for commit ca46a57. This will update automatically on new commits. Configure [here](https://cursor.com/dashboard?tab=bugbot).</sup> <!-- /CURSOR_SUMMARY -->
1 parent 16efc60 commit c04f32d

File tree

2 files changed

+1
-96
lines changed

2 files changed

+1
-96
lines changed

.github/actions/check-merge-queue/action.yml

Lines changed: 0 additions & 91 deletions
This file was deleted.

.github/workflows/main.yml

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -23,11 +23,7 @@ jobs:
2323
- name: Check pull request merge queue status
2424
id: check-skip-merge-queue
2525
if: github.event_name == 'merge_group'
26-
uses: ./.github/actions/check-merge-queue
27-
with:
28-
head-ref: ${{ github.event.merge_group.head_ref }}
29-
base-ref: main
30-
github-token: ${{ secrets.GITHUB_TOKEN }}
26+
uses: MetaMask/github-tools/.github/actions/check-skip-merge-queue@v1
3127

3228
check-workflows:
3329
name: Check workflows

0 commit comments

Comments
 (0)