From a58c66af1fa7d3d5385cb216235329202b6e17f4 Mon Sep 17 00:00:00 2001 From: Mark Stacey Date: Mon, 7 Jun 2021 11:27:15 -0230 Subject: [PATCH] Restore CLA bot permissions (#11240) The CLA bot had its write permissions revoked recently when our organization-wide settings were updated to restrict actions to read access by default. This PR restores write access to PRs and to the repository itself for the CLA bot. It needs PR write access to leave comments, and needs write access to the repo itself to commit new signatures. --- .github/workflows/cla.yml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.github/workflows/cla.yml b/.github/workflows/cla.yml index f358e58a9..d8e4e1be5 100644 --- a/.github/workflows/cla.yml +++ b/.github/workflows/cla.yml @@ -9,6 +9,9 @@ jobs: CLABot: if: github.event_name == 'pull_request_target' || contains(github.event.comment.html_url, '/pull/') runs-on: ubuntu-latest + permissions: + pull requests: write + contents: write steps: - name: "CLA Signature Bot" uses: MetaMask/cla-signature-bot@v3.0.2