Skip to content

Commit 7d2107f

Browse files
authored
Merge pull request #1094 from jack-w-shaw/JUJU-6480_add_cla_check
#1094 #### Description The cla check verifies that someone contributing to a Canonical project has signed the Canonical CLA agreement #### QA Steps CLA github action check runs and is successful
2 parents 6c6d70d + 44b08fc commit 7d2107f

1 file changed

Lines changed: 16 additions & 0 deletions

File tree

.github/workflows/cla.yml

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
name: "CLA check"
2+
on: [pull_request, workflow_dispatch]
3+
4+
permissions:
5+
contents: read
6+
7+
jobs:
8+
cla-check:
9+
permissions:
10+
pull-requests: write # for canonical/has-signed-canonical-cla to create & update comments
11+
runs-on: ubuntu-latest
12+
steps:
13+
- name: Check if CLA signed
14+
uses: canonical/has-signed-canonical-cla@1.2.3
15+
with:
16+
accept-existing-contributors: true

0 commit comments

Comments
 (0)