From 6fb1797576fd60ec8ee01c8ebff13bf0024edf11 Mon Sep 17 00:00:00 2001 From: "sweep-ai[bot]" <128439645+sweep-ai[bot]@users.noreply.github.com> Date: Thu, 1 Feb 2024 01:23:06 +0000 Subject: [PATCH] feat: Add CLA check to GitHub Actions workflow --- .github/workflows/main.yml | 27 +++++++++++++++++++++++++++ 1 file changed, 27 insertions(+) create mode 100644 .github/workflows/main.yml diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml new file mode 100644 index 000000000..2d3a045fc --- /dev/null +++ b/.github/workflows/main.yml @@ -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...