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
34 changes: 34 additions & 0 deletions .github/workflows/cla.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,34 @@
name: CLA Assistant

on:
issue_comment:
types: [created]
pull_request_target: # zizmor: ignore[dangerous-triggers] delegates to pinned reusable CLA workflow; never check out PR code here
types: [opened, synchronize, reopened, closed]

permissions:
actions: write
contents: read
issues: write
pull-requests: write
statuses: write

jobs:
cla:
if: >-
(
github.event_name == 'pull_request_target'
&& github.event.pull_request.user.login != 'dependabot[bot]'
) || (
github.event_name == 'issue_comment'
&& github.event.issue.pull_request
&& (
github.event.comment.body == 'recheck'
|| github.event.comment.body == 'I have read the CLA Document and I hereby sign the CLA'
)
)
uses: stella/.github/.github/workflows/cla.yml@44c8092f11c2f454916c320aa7d2144c173329d8
with:
allowlist: dependabot[bot],renovate[bot],github-actions[bot],google-labs-jules[bot],cursoragent
secrets:
CLA_APP_PRIVATE_KEY: ${{ secrets.CLA_APP_PRIVATE_KEY }}
Loading