From cc6f999683e9e6150699fa443589ab389e4d3334 Mon Sep 17 00:00:00 2001 From: Parker Brown <17183625+parkerbxyz@users.noreply.github.com> Date: Fri, 21 Nov 2025 15:46:17 -0800 Subject: [PATCH] ci(test): trigger on merge_group (#308) This pull request makes minor updates to the GitHub Actions workflow configuration in `.github/workflows/test.yml`, focusing on standardizing job naming and adding support for merge group events. --------- Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com> --- .github/workflows/test.yml | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index afbaded..8774c1b 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -5,6 +5,7 @@ on: branches: - main pull_request: + merge_group: workflow_dispatch: concurrency: @@ -16,7 +17,7 @@ permissions: jobs: integration: - name: Integration + name: integration runs-on: ubuntu-latest steps: - uses: actions/checkout@v6 @@ -29,10 +30,10 @@ jobs: - run: npm test end-to-end: - name: End-to-End + name: end-to-end runs-on: ubuntu-latest # do not run from forks, as forks don’t have access to repository secrets - if: github.event.pull_request.head.repo.owner.login == github.event.pull_request.base.repo.owner.login + if: github.event_name == 'merge_group' || github.event.pull_request.head.repo.owner.login == github.event.pull_request.base.repo.owner.login steps: - uses: actions/checkout@v6 - uses: actions/setup-node@v6