From 1a94b27d0bca897783a1ffb9dbe5bdd1f3f9cfa9 Mon Sep 17 00:00:00 2001 From: Chadwick Strange Date: Wed, 17 Aug 2022 16:32:49 -0400 Subject: [PATCH] Create cla.yml --- .github/workflows/cla.yml | 37 +++++++++++++++++++++++++++++++++++++ 1 file changed, 37 insertions(+) create mode 100644 .github/workflows/cla.yml diff --git a/.github/workflows/cla.yml b/.github/workflows/cla.yml new file mode 100644 index 00000000..66b7580a --- /dev/null +++ b/.github/workflows/cla.yml @@ -0,0 +1,37 @@ +name: "cla" +on: + issue_comment: + types: [created] + pull_request_target: + types: [opened, closed, synchronize] + +jobs: + cla: + runs-on: ubuntu-latest + steps: + - name: "Get Team Members" + id: team + # github-script, v6.1.0 + uses: actions/github-script@7a5c598405937d486b0331594b5da2b14db670da + with: + github-token: ${{ secrets.PERSONAL_ACCESS_TOKEN }} + result-encoding: string + script: | + const members = await github.paginate( + github.rest.orgs.listMembers, + { org: "skalenetwork" }, + ); + return members.map(m => m.login).join(","); + - name: "CLA Assistant" + if: (github.event.comment.body == 'recheck' || github.event.comment.body == 'I have read the CLA Document and I hereby sign the CLA') || github.event_name == 'pull_request_target' + # Beta Release, v2.1.3-beta + uses: cla-assistant/github-action@ba066dbae3769e2ce93ec8cfc4fdc51b9db628ba + env: + GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} + PERSONAL_ACCESS_TOKEN : ${{ secrets.PERSONAL_ACCESS_TOKEN }} + with: + path-to-signatures: 'signatures/version1/cla.json' + path-to-document: 'https://skale.network/cla.txt' + remote-organization-name: 'skalenetwork' + remote-repository-name: cla-sigs + allowlist: '${{ steps.team.outputs.result }},*[bot]'