From 60c32c223dc80e4eb9bcd9417a0fd6297007375a Mon Sep 17 00:00:00 2001 From: Yevhenii Huselietov Date: Sat, 16 Jul 2022 11:58:26 -0400 Subject: [PATCH] Remove CLA from probot and use new GitHub action Signed-off-by: Michael Nikitochkin --- .github/probots.yml | 4 ---- .github/workflows/cla.yml | 24 ++++++++++++++++++++++++ 2 files changed, 24 insertions(+), 4 deletions(-) delete mode 100644 .github/probots.yml create mode 100644 .github/workflows/cla.yml diff --git a/.github/probots.yml b/.github/probots.yml deleted file mode 100644 index 9b6c0143..00000000 --- a/.github/probots.yml +++ /dev/null @@ -1,4 +0,0 @@ ---- - -enabled: - - cla diff --git a/.github/workflows/cla.yml b/.github/workflows/cla.yml new file mode 100644 index 00000000..291ef1a6 --- /dev/null +++ b/.github/workflows/cla.yml @@ -0,0 +1,24 @@ +--- + +name: Contributor License Agreement (CLA) + +on: + pull_request_target: + types: [opened, synchronize] + issue_comment: + types: [created] + +jobs: + cla: + runs-on: ubuntu-latest + if: | + (github.event.issue.pull_request + && !github.event.issue.pull_request.merged_at + && contains(github.event.comment.body, 'signed') + ) + || (github.event.pull_request && !github.event.pull_request.merged) + steps: + - uses: Shopify/shopify-cla-action@v1 + with: + github-token: ${{ secrets.GITHUB_TOKEN }} + cla-token: ${{ secrets.CLA_TOKEN }}