From 8190911ca86a696c06b5535d55254bc5b8e8fa14 Mon Sep 17 00:00:00 2001 From: calesthio Date: Sun, 19 Jul 2026 09:16:31 -0700 Subject: [PATCH] chore: remove CLA contribution gate --- .github/workflows/cla.yml | 36 ----------------------------------- CLA.md | 40 --------------------------------------- CONTRIBUTING.md | 7 +++++++ 3 files changed, 7 insertions(+), 76 deletions(-) delete mode 100644 .github/workflows/cla.yml delete mode 100644 CLA.md create mode 100644 CONTRIBUTING.md diff --git a/.github/workflows/cla.yml b/.github/workflows/cla.yml deleted file mode 100644 index 935d0b5d..00000000 --- a/.github/workflows/cla.yml +++ /dev/null @@ -1,36 +0,0 @@ -# CLA Assistant Lite — gates every PR on a CLA signature. -# Install at: .github/workflows/cla.yml in the OpenMontage repo. -# Signatures are stored in the repo on the 'cla-signatures' branch (no external service). -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: - runs-on: ubuntu-latest - 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/signatures.json" - path-to-document: "https://github.com/calesthio/OpenMontage/blob/main/CLA.md" - branch: "cla-signatures" - allowlist: "calesthio,dependabot[bot],*[bot]" - custom-notsigned-prcomment: > - Thanks for the contribution! Before we can merge, please read our - [Contributor License Agreement](https://github.com/calesthio/OpenMontage/blob/main/CLA.md) - and sign by commenting the sentence below. The engine stays open source forever — - the CLA simply lets the project also offer commercial licensing as it grows. - custom-pr-sign-comment: "I have read the CLA Document and I hereby sign the CLA" diff --git a/CLA.md b/CLA.md deleted file mode 100644 index 9eacabd2..00000000 --- a/CLA.md +++ /dev/null @@ -1,40 +0,0 @@ -# OpenMontage Individual Contributor License Agreement - -Thank you for your interest in contributing to OpenMontage ("the Project"), maintained by Calesthio ("the Maintainer"). - -This Contributor License Agreement ("Agreement") clarifies the intellectual-property rights granted with Contributions from any person to the Maintainer. This license is for your protection as a Contributor as well as for the protection of the Project and its users; it does not change your rights to use your own Contributions for any other purpose. - -By commenting "I have read the CLA Document and I hereby sign the CLA" on a Project pull request or on the designated signing issue, you accept and agree to the following terms for your present and future Contributions submitted to the Project. - -## 1. Definitions - -**"You"** means the individual who submits a Contribution. - -**"Contribution"** means any original work of authorship, including any modifications or additions to an existing work, that is intentionally submitted by You to the Project for inclusion in, or documentation of, the Project. - -## 2. Grant of Copyright License - -Subject to the terms of this Agreement, You hereby grant to the Maintainer and to recipients of software distributed by the Maintainer a perpetual, worldwide, non-exclusive, no-charge, royalty-free, irrevocable copyright license to reproduce, prepare derivative works of, publicly display, publicly perform, sublicense, and distribute Your Contributions and such derivative works, **under any license terms, including without limitation open-source licenses and commercial or proprietary licenses**. - -## 3. Grant of Patent License - -Subject to the terms of this Agreement, You hereby grant to the Maintainer and to recipients of software distributed by the Maintainer a perpetual, worldwide, non-exclusive, no-charge, royalty-free, irrevocable (except as stated in this section) patent license to make, have made, use, offer to sell, sell, import, and otherwise transfer Your Contributions, where such license applies only to those patent claims licensable by You that are necessarily infringed by Your Contribution alone or by combination of Your Contribution with the Project. If any entity institutes patent litigation against You or any other entity alleging that Your Contribution, or the Project to which You have contributed, constitutes direct or contributory patent infringement, then any patent licenses granted to that entity under this Agreement for that Contribution or Project shall terminate as of the date such litigation is filed. - -## 4. Representations - -You represent that: -(a) You are legally entitled to grant the above licenses. -(b) Each of Your Contributions is Your original creation, or You have identified any third-party material and its license within the Contribution. -(c) If Your employer has rights to intellectual property that You create that includes Your Contributions, You have received permission to make Contributions on behalf of that employer, or Your employer has waived such rights for Your Contributions to the Project. - -## 5. No Support Obligation; Disclaimer - -You are not expected to provide support for Your Contributions, except to the extent You desire to provide support. Unless required by applicable law or agreed to in writing, You provide Your Contributions on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - -## 6. Project License Commitment - -The Maintainer commits that the OpenMontage engine will always remain available under an OSI-approved open-source license. This Agreement exists to allow the Maintainer to additionally offer the Project under other license terms (for example, commercial licenses for organizations that cannot use AGPLv3), and to keep that possible as the Project grows. - -## 7. Notification - -You agree to notify the Maintainer of any facts or circumstances of which You become aware that would make these representations inaccurate in any respect. diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md new file mode 100644 index 00000000..b1fd5bf1 --- /dev/null +++ b/CONTRIBUTING.md @@ -0,0 +1,7 @@ +# Contributing to OpenMontage + +Thank you for improving OpenMontage. We do not require a Contributor License Agreement (CLA), Developer Certificate of Origin sign-off, or any separate contribution contract. + +By submitting a pull request, you confirm that you have the right to contribute its contents. Contributions must be compatible with the repository's [AGPLv3 license](LICENSE), and accepted contributions remain available under that license. + +Please keep pull requests focused and include tests when behavior changes.