feat: Add CLA check to GitHub Actions workflow

pull/1853/head
sweep-ai[bot] 2 years ago committed by GitHub
parent 42a3084a6f
commit 6fb1797576
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

@ -0,0 +1,27 @@
name: CI
on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v2
# Existing steps...
- name: Check CLA status
uses: contributor-assistant/github-action@v2.3.1
with:
cla-file: 'CLA.md'
fail-on-cla-failure: true
# Existing steps...
Loading…
Cancel
Save