Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 8 additions & 2 deletions .github/workflows/cla.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,9 @@ on:

permissions:
actions: write
contents: read
# write, not read: the action commits the signature file to `signatures/cla.json`
# on the branch below. With read it can never record a signature.
contents: write
pull-requests: write
statuses: write

Expand All @@ -26,5 +28,9 @@ jobs:
PERSONAL_ACCESS_TOKEN: ${{ secrets.CLA_ASSISTANT_PAT }}
with:
path-to-document: 'https://github.com/linkforty/core/blob/main/CLA.md'
path-to-cla-assistants: 'https://cla-assistant.io/'
# The action defaults this to 'master', which does not exist in this
# repo — it read signatures from a missing ref and failed every run with
# "Could not retrieve repository contents. Status: 404".
branch: 'main'
path-to-signatures: 'signatures/cla.json'
allowlist: 'bot*,dependabot*,github-actions*'
Loading