chore(deps): bump @aastar/sdk 0.39.4 → 0.43.0 (CC-40/CC-41, unblock CC-33) #481
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
| # CLA Assistant GitHub Action | |
| # Copy this file to: .github/workflows/cla.yml in each repo | |
| # | |
| # Prerequisites: | |
| # 1. Go to repo Settings → Secrets → add secret named CLA_TOKEN | |
| # (a Personal Access Token with repo scope from an org admin account) | |
| # 2. The CLA text lives at: | |
| # https://github.com/AAStarCommunity/Brood/blob/main/protocol/CLA.md | |
| name: CLA Assistant | |
| on: | |
| issue_comment: | |
| types: [created] | |
| pull_request_target: | |
| types: [opened, closed, synchronize] | |
| permissions: | |
| actions: write | |
| contents: write | |
| pull-requests: write | |
| statuses: write | |
| jobs: | |
| cla-check: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: CLA Assistant | |
| uses: contributor-assistant/github-action@v2.6.1 | |
| env: | |
| GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
| PERSONAL_ACCESS_TOKEN: ${{ secrets.CLA_TOKEN }} | |
| with: | |
| path-to-signatures: 'signatures/cla.json' | |
| path-to-document: 'https://github.com/AAStarCommunity/Brood/blob/main/protocol/CLA.md' | |
| branch: 'cla-signatures' | |
| allowlist: bot*,dependabot[bot],github-actions[bot] | |
| remote-organization-name: AAStarCommunity | |
| remote-repository-name: Brood |