Skip to content

Commit

Permalink
ci: add CLA check (#1437)
Browse files Browse the repository at this point in the history
  • Loading branch information
d-loose authored Oct 4, 2023
1 parent c4d2f72 commit 7f32181
Showing 1 changed file with 13 additions and 0 deletions.
13 changes: 13 additions & 0 deletions .github/workflows/pr.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
name: PR

on: [pull_request_target]

jobs:
cla:
if: contains(fromJson('["weblate"]'), github.event.pull_request.user.login) == false
runs-on: ubuntu-latest
steps:
- name: Check if CLA signed
uses: canonical/has-signed-canonical-cla@v1
with:
exempted-bots: dependabot,github-actions,renovate

0 comments on commit 7f32181

Please sign in to comment.