Skip to content

Measure a worktree against where it lands, not the repo default (SPEC-51) #1035

Measure a worktree against where it lands, not the repo default (SPEC-51)

Measure a worktree against where it lands, not the repo default (SPEC-51) #1035

Workflow file for this run

name: "CLA Assistant"
on:
issue_comment:
types: [created]
pull_request_target:
types: [opened, closed, synchronize]
# Explicitly configure the least privilege the action needs.
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 == 'recreate-cla' || 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.6.1
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
# Where signatures are stored (committed to the branch below).
path-to-signatures: "signatures/version1/cla.json"
path-to-document: "https://github.com/leduckhc/makit/blob/main/CLA.md"
branch: "main"
# Bots don't need to sign. The solo repo owner is exempt too — the
# project owner needn't sign their own CLA, and it avoids the action
# trying to commit a signature file to the protected `main` branch.
# `cursoragent` is the Cursor Cloud Agent committer identity.
allowlist: leduckhc,cursoragent,dependabot[bot],github-actions[bot],*bot
# Text shown to contributors.
custom-notsigned-prcomment: "Thank you for your contribution! Before we can merge it, please read our [Contributor License Agreement](https://github.com/leduckhc/makit/blob/main/CLA.md) and sign it by posting the comment below."
custom-pr-sign-comment: "I have read the CLA Document and I hereby sign the CLA"
custom-allsigned-prcomment: "All contributors have signed the CLA. ✅"