From 9f24124be55ef409fb6b6c75ee80232f298cd56b Mon Sep 17 00:00:00 2001 From: Jonathan McPherson Date: Thu, 11 Jul 2024 17:27:10 -0700 Subject: [PATCH] Revert "Use just-in-time access token for checking CLA (#3985)" This reverts commit df5250685b421a7b6cb83283ad9ee187bde016c8. --- .github/workflows/cla.yml | 19 +++---------------- 1 file changed, 3 insertions(+), 16 deletions(-) diff --git a/.github/workflows/cla.yml b/.github/workflows/cla.yml index 70520937eae..d3a82e3cce8 100644 --- a/.github/workflows/cla.yml +++ b/.github/workflows/cla.yml @@ -14,19 +14,6 @@ permissions: jobs: RequireCLA: - steps: - # Generate an access token; used to access the repository hosting the set - # of known CLA signatures - - name: Create access token - uses: actions/create-github-app-token@v1 - id: app-token - with: - app-id: ${{ vars.POSITRON_BOT_APP_ID }} - private-key: ${{ secrets.POSITRON_BOT_PRIVATE_KEY }} - owner: ${{ github.repository_owner }} - - # Validate that the CLA has been signed by the author(s) - - name: Validate CLA signatures - uses: posit-dev/cla-assistant/.github/workflows/posit-cla.yml@v1 - secrets: - CLA_ASSISTANT_PAT: ${{ steps.app-token.outputs.token }} + uses: posit-dev/cla-assistant/.github/workflows/posit-cla.yml@v1 + secrets: + CLA_ASSISTANT_PAT: ${{ secrets.CLA_ASSISTANT_PAT }}