fix: resolve multiple CI failures #490
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
| # SPDX-FileCopyrightText: 2025 Knitli Inc. <knitli@knit.li> | |
| # SPDX-FileContributor: Adam Poulemanos <adam@knit.li> | |
| # | |
| # SPDX-License-Identifier: MIT OR Apache-2.0 | |
| # ! GitHub Action to check CLA signatures for Knitli repositories | |
| # ! This action is triggered on issue comments and pull request events. | |
| name: CLA Assistant | |
| on: | |
| issue_comment: | |
| types: | |
| - created | |
| pull_request_target: | |
| types: | |
| - opened | |
| - closed | |
| - synchronize | |
| env: | |
| CLA_ACCESS_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
| permissions: | |
| actions: write | |
| contents: read | |
| pull-requests: write | |
| statuses: write | |
| jobs: | |
| cla-check: | |
| uses: knitli/.github/.github/workflows/cla-check.yml@main | |
| with: | |
| repo_name: thread | |
| cla_document_url: https://github.com/knitli/thread/blob/main/CONTRIBUTORS_LICENSE_AGREEMENT.md | |
| secrets: | |
| CLA_ACCESS_TOKEN: ${{ secrets.CLA_ACCESS_TOKEN }} |