Skip to content

Commit

Permalink
chore: adding cla check workflow
Browse files Browse the repository at this point in the history
As all users making contributions into Ockam repositories needs to sign
the CLA beforehand this workflow will give prompt them for approval and
manage the persistence.
  • Loading branch information
Necromos authored and mrinalwadhwa committed Jul 21, 2020
1 parent e604f9b commit 06c8110
Showing 1 changed file with 25 additions and 0 deletions.
25 changes: 25 additions & 0 deletions .github/workflows/cla.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
name: "CLA Check"
on:
issues:
types: [opened]
issue_comment:
types: [created]
pull_request:
types: [opened, closed, synchronize]

jobs:
cla-check:
runs-on: ubuntu-latest
steps:
- name: "CLA Check"
uses: ockam-network/cla-action@master
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
PERSISTANCE_GITHUB_TOKEN: ${{ secrets.PERSISTANCE_GITHUB_TOKEN }}
with:
path-to-signatures: 'cla-signers.json'
path-to-cla-document: 'https://www.ockam.io/learn/guides/contributions/cla'
branch: 'master'
persistance-repository: 'contributors'
empty-commit-flag: false
blockchain-storage-flag: false

0 comments on commit 06c8110

Please sign in to comment.