mirror of
https://github.com/openimsdk/open-im-server.git
synced 2025-12-03 02:42:19 +08:00
feat: Add CLA check to GitHub Actions workflow
This commit is contained in:
parent
42a3084a6f
commit
6fb1797576
27
.github/workflows/main.yml
vendored
Normal file
27
.github/workflows/main.yml
vendored
Normal file
@ -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…
x
Reference in New Issue
Block a user