From 9d67244f2eaee2f6445ba971547be022a0a82598 Mon Sep 17 00:00:00 2001 From: Ben Mares Date: Mon, 14 Oct 2024 08:44:13 +0100 Subject: [PATCH] Delete actual CLA workflow https://github.com/conda/conda-lock/pull/726#issuecomment-2409227097 --- .github/workflows/cla.yml | 35 ----------------------------------- 1 file changed, 35 deletions(-) delete mode 100644 .github/workflows/cla.yml diff --git a/.github/workflows/cla.yml b/.github/workflows/cla.yml deleted file mode 100644 index ddc05163..00000000 --- a/.github/workflows/cla.yml +++ /dev/null @@ -1,35 +0,0 @@ -name: CLA - -on: - issue_comment: - types: - - created - pull_request_target: - -jobs: - check: - if: >- - !github.event.repository.fork - && ( - github.event.issue.pull_request - && github.event.comment.body == '@conda-bot check' - || github.event_name == 'pull_request_target' - ) - runs-on: ubuntu-latest - steps: - - name: Check CLA - uses: conda/actions/check-cla@15f883f14f4232f83658e3609c3316d58905138f # v24.8.0 - with: - # [required] - # A token with ability to comment, label, and modify the commit status - # (`pull_request: write` and `statuses: write` for fine-grained PAT; `repo` for classic PAT) - # (default: secrets.GITHUB_TOKEN) - token: ${{ secrets.CLA_ACTION_TOKEN }} - # [required] - # Label to apply to contributor's PR once CLA is signed - label: cla-signed - - # [required] - # Token for opening signee PR in the provided `cla_repo` - # (`pull_request: write` for fine-grained PAT; `repo` and `workflow` for classic PAT) - cla_token: ${{ secrets.CLA_FORK_TOKEN }}