From 8b7b1376f76944146266da0c04861bd6ff47413a Mon Sep 17 00:00:00 2001 From: Adam Dyess Date: Wed, 17 Apr 2024 14:53:37 -0500 Subject: [PATCH] Adds CLA check to repo --- .github/workflows/cla-check.yaml | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 .github/workflows/cla-check.yaml diff --git a/.github/workflows/cla-check.yaml b/.github/workflows/cla-check.yaml new file mode 100644 index 00000000..8648f42f --- /dev/null +++ b/.github/workflows/cla-check.yaml @@ -0,0 +1,13 @@ +name: cla-check + +on: + pull_request: + branches: + - main + +jobs: + cla-check: + runs-on: ubuntu-latest + steps: + - name: Check if CLA signed + uses: canonical/has-signed-canonical-cla@v1 \ No newline at end of file