chore: bump the misc group across 1 directory with 3 updates #446
Workflow file for this run
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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 }} |