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