From a39ea49d4d3c1fe7dd9d829dc9cd9e59e7bfbec7 Mon Sep 17 00:00:00 2001 From: AndyMik90 Date: Mon, 29 Dec 2025 22:11:03 +0100 Subject: [PATCH] chore(ci): remove redundant CLA GitHub Action workflow MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Switched to hosted CLA Assistant service (cla-assistant.io) which handles CLA signing via GitHub webhooks instead of a workflow file. The hosted service stores signatures in its own database, eliminating branch protection issues with the previous approach. 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude Opus 4.5 --- .github/workflows/cla.yml | 56 --------------------------------------- 1 file changed, 56 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 1df6b282..00000000 --- a/.github/workflows/cla.yml +++ /dev/null @@ -1,56 +0,0 @@ -name: "CLA Assistant" - -on: - issue_comment: - types: [created] - pull_request_target: - types: [opened, closed, synchronize] - -permissions: - actions: write - contents: write - pull-requests: write - statuses: write - -jobs: - CLAAssistant: - name: CLA Check - runs-on: ubuntu-latest - timeout-minutes: 5 - steps: - - name: "CLA Assistant" - if: | - github.event.comment.body == 'recheck' || - github.event.comment.body == 'I have read the CLA Document and I hereby sign the CLA' || - github.event_name == 'pull_request_target' - uses: contributor-assistant/github-action@v2.6.1 - env: - GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} - with: - path-to-signatures: '.github/cla-signatures.json' - path-to-document: 'https://github.com/AndyMik90/Auto-Claude/blob/main/CLA.md' - branch: 'main' - # Allowlist for bots and automation - allowlist: 'dependabot[bot],github-actions[bot],renovate[bot],coderabbitai[bot]' - # Custom messages - custom-notsigned-prcomment: | - Thank you for your contribution! Before we can accept your PR, you need to sign our Contributor License Agreement (CLA). - - **To sign the CLA**, please comment on this PR with exactly: - ``` - I have read the CLA Document and I hereby sign the CLA - ``` - - You can read the full CLA here: [CLA.md](https://github.com/AndyMik90/Auto-Claude/blob/main/CLA.md) - - --- - **Why do we need a CLA?** - - Auto Claude is licensed under AGPL-3.0. The CLA ensures the project has proper licensing flexibility should we introduce additional licensing options in the future. - - You retain full copyright ownership of your contributions. - custom-pr-sign-comment: 'I have read the CLA Document and I hereby sign the CLA' - custom-allsigned-prcomment: | - All contributors have signed the CLA. Thank you! - lock-pullrequest-aftermerge: false - suggest-recheck: true