From aab53d6e73b0ef4e7f84553dfd8ae3ba31609aed Mon Sep 17 00:00:00 2001 From: Daniel Chalef <131175+danielchalef@users.noreply.github.com> Date: Wed, 16 Apr 2025 12:27:37 -0700 Subject: [PATCH] chore: update CLA Assistant action and token in workflow (#364) Update CLA workflow to use new GitHub Action version and adjust token usage to user PAT --- .github/workflows/cla.yml | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/.github/workflows/cla.yml b/.github/workflows/cla.yml index 44052d66..19bea375 100644 --- a/.github/workflows/cla.yml +++ b/.github/workflows/cla.yml @@ -18,13 +18,15 @@ jobs: 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: contributor-assistant/github-action@v2.5.1 + uses: contributor-assistant/github-action@v2.6.1 env: - GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} + # the default github token does not have branch protection override permissions + # the repo secrets will need to be updated when the token expires. + GITHUB_TOKEN: ${{ secrets.DANIEL_PAT }} with: path-to-signatures: "signatures/version1/cla.json" path-to-document: "https://github.com/getzep/graphiti/blob/main/Zep-CLA.md" # e.g. a CLA or a DCO document - # branch should not be protected + # branch should not be protected unless a personal PAT is used branch: "main" allowlist: paul-paliychuk,prasmussen15,danielchalef,dependabot[bot],ellipsis-dev