From 6506ae8c7b0a3196267fea7f776ceac96b47dbe3 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E5=AE=89=E6=AD=A3=E8=B6=85?= Date: Wed, 15 Apr 2026 17:20:16 +0800 Subject: [PATCH] fix(ci): report CLA check for GitHub Merge Queue (#2551) --- .github/workflows/cla.yml | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) diff --git a/.github/workflows/cla.yml b/.github/workflows/cla.yml index 3c0c23ee9..750181051 100644 --- a/.github/workflows/cla.yml +++ b/.github/workflows/cla.yml @@ -17,6 +17,8 @@ name: CLA Check on: pull_request_target: types: [opened, synchronize, reopened] + merge_group: + types: [checks_requested] issue_comment: types: [created, edited] @@ -31,7 +33,26 @@ jobs: if: ${{ github.event_name != 'issue_comment' || github.event.issue.pull_request }} runs-on: ubuntu-latest steps: + - name: Report CLA result for merge queue + if: github.event_name == 'merge_group' + uses: actions/github-script@v8 + with: + script: | + await github.rest.checks.create({ + owner: context.repo.owner, + repo: context.repo.repo, + name: 'CLA Check', + head_sha: context.sha, + status: 'completed', + conclusion: 'success', + output: { + title: 'CLA requirements satisfied for merge queue', + summary: 'Queued pull requests must satisfy the required CLA check before they enter the merge queue. This reports the existing CLA result on the merge-group SHA.' + } + }); + - name: Create token for rustfs/cla + if: github.event_name != 'merge_group' id: registry-token uses: actions/create-github-app-token@v3 with: @@ -42,6 +63,7 @@ jobs: permission-contents: write - name: Run CLA Bot + if: github.event_name != 'merge_group' uses: overtrue/cla-bot@v0.0.9 with: github-token: ${{ github.token }}