-
Notifications
You must be signed in to change notification settings - Fork 3
29 lines (29 loc) · 833 Bytes
/
cla.yml
File metadata and controls
29 lines (29 loc) · 833 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
# 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
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: codeweaver
cla_document_url: https://github.com/knitli/codeweaver/blob/main/CONTRIBUTORS_LICENSE_AGREEMENT.md
secrets:
CLA_ACCESS_TOKEN: ${{ secrets.CLA_ACCESS_TOKEN }}