Skip to content

Commit aab53d6

Browse files
authored
chore: update CLA Assistant action and token in workflow (camel-ai#364)
Update CLA workflow to use new GitHub Action version and adjust token usage to user PAT
1 parent bad33f6 commit aab53d6

File tree

1 file changed

+5
-3
lines changed

1 file changed

+5
-3
lines changed

.github/workflows/cla.yml

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -18,13 +18,15 @@ jobs:
1818
steps:
1919
- name: "CLA Assistant"
2020
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'
21-
uses: contributor-assistant/github-action@v2.5.1
21+
uses: contributor-assistant/github-action@v2.6.1
2222
env:
23-
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
23+
# the default github token does not have branch protection override permissions
24+
# the repo secrets will need to be updated when the token expires.
25+
GITHUB_TOKEN: ${{ secrets.DANIEL_PAT }}
2426
with:
2527
path-to-signatures: "signatures/version1/cla.json"
2628
path-to-document: "https://github.com/getzep/graphiti/blob/main/Zep-CLA.md" # e.g. a CLA or a DCO document
27-
# branch should not be protected
29+
# branch should not be protected unless a personal PAT is used
2830
branch: "main"
2931
allowlist: paul-paliychuk,prasmussen15,danielchalef,dependabot[bot],ellipsis-dev
3032

0 commit comments

Comments
 (0)