Skip to content

Commit

Permalink
chore(cla): add cla check action
Browse files Browse the repository at this point in the history
The cla check verifies that someone contributing to a Canonical project
has signed the Canonical CLA agreement
  • Loading branch information
jack-w-shaw committed Aug 28, 2024
1 parent 6c6d70d commit 44b08fc
Showing 1 changed file with 16 additions and 0 deletions.
16 changes: 16 additions & 0 deletions .github/workflows/cla.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
name: "CLA check"
on: [pull_request, workflow_dispatch]

permissions:
contents: read

jobs:
cla-check:
permissions:
pull-requests: write # for canonical/has-signed-canonical-cla to create & update comments
runs-on: ubuntu-latest
steps:
- name: Check if CLA signed
uses: canonical/[email protected]
with:
accept-existing-contributors: true

0 comments on commit 44b08fc

Please sign in to comment.