chore(deps): bump the prod-dependencies group across 1 directory with 5 updates #724
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: | |
| types: [opened, closed, synchronize] | |
| branches: [beta] | |
| permissions: | |
| actions: write | |
| contents: write | |
| pull-requests: write | |
| statuses: write | |
| jobs: | |
| cla: | |
| name: CLA Check | |
| runs-on: ubuntu-latest | |
| 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' && github.event.pull_request.base.ref == 'beta') | |
| steps: | |
| - name: Generate app token | |
| id: app-token | |
| uses: actions/create-github-app-token@f8d387b68d61c58ab83c6c016672934102569859 # v3 | |
| with: | |
| app-id: ${{ vars.BOT_APP_ID }} | |
| private-key: ${{ secrets.BOT_PRIVATE_KEY }} | |
| - uses: contributor-assistant/github-action@ca4a40a7d1004f18d9960b404b97e5f30a505a08 # v2.6.1 | |
| env: | |
| GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
| PERSONAL_ACCESS_TOKEN: ${{ steps.app-token.outputs.token }} | |
| with: | |
| remote-organization-name: steilerDev | |
| remote-repository-name: cornerstone | |
| path-to-signatures: '.github/cla/signatures.json' | |
| path-to-document: 'https://github.com/steilerDev/cornerstone/blob/main/CLA.md' | |
| branch: 'beta' | |
| allowlist: dependabot[bot],github-actions[bot],steilerdev-cornerstone-bot[bot],claude,Frontend Developer,Backend Developer | |
| custom-notsigned-prcomment: >- | |
| Thank you for your submission! We require all contributors to sign our | |
| [Contributor License Agreement](https://github.com/steilerDev/cornerstone/blob/main/CLA.md) | |
| before we can accept your contribution.<br/><br/> | |
| To sign, please comment on this PR with:<br/> | |
| **I have read the CLA Document and I hereby sign the CLA** | |
| custom-pr-sign-comment: 'I have read the CLA Document and I hereby sign the CLA' | |
| signed-commit-message: 'chore: record CLA signature for $contributorName [skip ci]' |