override local network for onvif scan in containers #23
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: CLA Assistant | |
| on: | |
| issue_comment: | |
| types: [created] | |
| pull_request_target: | |
| types: [opened, synchronize, reopened] | |
| permissions: | |
| actions: write | |
| contents: read | |
| pull-requests: write | |
| statuses: write | |
| jobs: | |
| cla-check: | |
| 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 }} | |
| PERSONAL_ACCESS_TOKEN: ${{ secrets.CLA_ASSISTANT_TOKEN }} | |
| with: | |
| path-to-signatures: '.github/cla-signatures.json' | |
| path-to-document: 'https://github.com/${{ github.repository }}/blob/main/CLA.md' | |
| branch: 'main' | |
| allowlist: 'matteius,dependabot[bot],github-actions[bot]' | |
| # Custom messages | |
| custom-notsigned-prcomment: | | |
| Thank you for your contribution to lightNVR! 🎉 | |
| Before we can merge your pull request, we need you to sign our [Contributor License Agreement (CLA)](https://github.com/${{ github.repository }}/blob/main/CLA.md). | |
| **Why a CLA?** | |
| lightNVR uses a dual-licensing model. While the project is freely available under GPLv3, OpenSensor Engineering also offers commercial licenses. The CLA ensures we can continue offering both options. | |
| **To sign the CLA**, please reply to this comment with exactly: | |
| ``` | |
| I have read the CLA Document and I hereby sign the CLA | |
| ``` | |
| You only need to sign once, and it applies to all future contributions. | |
| --- | |
| <details> | |
| <summary>ℹ️ More about the CLA</summary> | |
| The CLA grants OpenSensor Engineering the right to: | |
| - Include your contributions under GPLv3 (open source) | |
| - Offer commercial licenses that include your contributions | |
| You retain copyright of your contributions and can use them in other projects. | |
| </details> | |
| 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 | |
| use-dco-flag: false | |