From f5cc097ffb0bb2d9444ced329157c43294a922b5 Mon Sep 17 00:00:00 2001 From: Chris Smith Date: Thu, 11 Sep 2025 13:55:15 -0400 Subject: [PATCH] chore: CLA --- .github/workflows/cli.yml | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) create mode 100644 .github/workflows/cli.yml diff --git a/.github/workflows/cli.yml b/.github/workflows/cli.yml new file mode 100644 index 00000000..31989085 --- /dev/null +++ b/.github/workflows/cli.yml @@ -0,0 +1,21 @@ +name: "CTA Assistant" +on: + issue_comment: + types: [created] + pull_request_target: + types: [opened, closed, synchronize] + +# Required permissions +permissions: + actions: write + contents: write # can be 'read' if signatures are in remote repository + pull-requests: write + statuses: write + +jobs: + CTA: + runs-on: ubuntu-latest + steps: + - uses: walletconnect/actions/github/cta-assistant@master + env: + GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}