From cbe8ffdcea77130fb50a0c9c2c13818a893a530a Mon Sep 17 00:00:00 2001 From: Kunal Maurya Date: Wed, 24 Dec 2025 12:41:26 +0530 Subject: [PATCH] chore: update CLA Assistant GitHub Action to v2.6.1- Updated contributor-assistant/github-action from v2.0.0 to v2.6.1- Added required permissions block for GitHub token scope- Ensures compatibility with latest GitHub APIFixes #3054 Signed-off-by: Kunal Maurya --- .github/workflows/cla.yml | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/.github/workflows/cla.yml b/.github/workflows/cla.yml index 19a4e1f..d0e3448 100644 --- a/.github/workflows/cla.yml +++ b/.github/workflows/cla.yml @@ -10,13 +10,19 @@ on: - "closed" - "synchronize" +permissions: + actions: write + contents: write + pull-requests: write + statuses: write + jobs: cla-assistant: runs-on: "ubuntu-latest" steps: - name: "CLA Assistant" if: "(github.event.comment.body == 'recheck' || github.event.comment.body == 'I have read the CLA Document and I hereby sign the CLA') || github.event_name == 'pull_request_target'" - uses: "cla-assistant/github-action@v2.1.3-beta" + uses: "contributor-assistant/github-action@v2.6.1" env: GITHUB_TOKEN: "${{ secrets.GITHUB_TOKEN }}" PERSONAL_ACCESS_TOKEN: "${{ secrets.PRO_ACCESS_TOKEN }}"