Skip to content

Commit

Permalink
Chore: add a CLA checking action (#1292)
Browse files Browse the repository at this point in the history
* Chore: add a CLA checking action

* Rm myself to test

* Refs

* PR trigger

* Tweak the if

* Restore myself
  • Loading branch information
katspaugh authored Dec 1, 2022
1 parent c34012e commit a65e1c9
Showing 1 changed file with 23 additions and 0 deletions.
23 changes: 23 additions & 0 deletions .github/workflows/cla.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
name: 'CLA Assistant'

on:
issue_comment:

pull_request:

jobs:
CLAssistant:
runs-on: ubuntu-latest
steps:
- name: 'CLA Assistant'
if: github.event_name == 'pull_request' || github.event.comment.body == 'I have read the CLA Document and I hereby sign the CLA' || github.event.comment.body == 'recheckcla'
uses: gnosis/github-action@master
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
path-to-signatures: 'signatures/version1/cla.json'
path-to-cla-document: 'https://safe.global/cla/'
branch: 'cla-signatures'
allowlist: lukasschor,mikheevm,rmeissner,germartinez,Uxio0,dasanra,francovenica,tschubotz,luarx,bot*,katspaugh,DaniSomoza,iamacook,yagopv,usame-algan,schmanu,DiogoSoaress,JagoFigueroa
empty-commit-flag: false
blockchain-storage-flag: false

0 comments on commit a65e1c9

Please sign in to comment.