From 6d1b0cf5465661fa553779498c21f45cf7a291ad Mon Sep 17 00:00:00 2001 From: cliffchapmanrbx <47404136+cliffchapmanrbx@users.noreply.github.com> Date: Wed, 10 Jun 2020 23:05:35 -0700 Subject: [PATCH] Enables CLA bot Adds the workflow for CLA bot. See http://go/clabot for more details. --- .github/workflows/clabot.yml | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) create mode 100644 .github/workflows/clabot.yml diff --git a/.github/workflows/clabot.yml b/.github/workflows/clabot.yml new file mode 100644 index 0000000..d33d50e --- /dev/null +++ b/.github/workflows/clabot.yml @@ -0,0 +1,22 @@ +name: "CLA Signature Bot" +on: + issue_comment: + types: [created] + pull_request: + types: [opened,closed,synchronize] + +jobs: + clabot: + runs-on: ubuntu-latest + steps: + - name: "CLA Signature Bot" + uses: roblox/cla-signature-bot@v2.0.0 + env: + GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} + with: + whitelist: "shishir-a412ed,chuckyz,vulfox,cliffchapmanrbx" + use-remote-repo: true + remote-repo-name: "roblox/cla-bot-store" + remote-repo-pat: ${{ secrets.CLA_REMOTE_REPO_PAT }} + url-to-cladocument: "https://roblox.github.io/cla-bot-store/" +