build(deps): update html5ever requirement from 0.35 to 0.36 #18
Workflow file for this run
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, closed, synchronize] | |
| permissions: | |
| actions: write | |
| contents: write | |
| pull-requests: write | |
| statuses: write | |
| jobs: | |
| CLAssistant: | |
| 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.PERSONAL_ACCESS_TOKEN }} | |
| with: | |
| path-to-signatures: 'signatures/version1/cla.json' | |
| path-to-document: 'https://github.com/AprilNEA/DevUtility/blob/master/CLA-INDIVIDUAL.md' | |
| branch: 'cla-signatures' | |
| allowlist: 'dependabot[bot],renovate[bot],github-actions[bot],AprilNEA' | |
| signed-commit-message: 'CLA Signature: $contributorName has signed the CLA in $owner/$repo#$pullRequestNo' | |
| custom-notsigned-prcomment: | | |
| 🔒 **CLA Signature Required for DevUtility** | |
| Thank you for your contribution to **DevUtility**! Before we can merge your pull request, you need to sign our Contributor License Agreement (CLA). | |
| ## Choose Your CLA Type: | |
| ### 👤 Individual Contributors | |
| If you're contributing as an individual: **[Individual CLA](https://github.com/AprilNEA/DevUtility/blob/master/CLA-INDIVIDUAL.md)** | |
| ### 🏢 Corporate Contributors | |
| If you're contributing on behalf of your company: **[Corporate CLA](https://github.com/AprilNEA/DevUtility/blob/master/CLA-CORPORATE.md)** | |
| ## ✅ For Individual Contributors - Sign Now: | |
| Simply comment below with: | |
| ``` | |
| I have read the CLA Document and I hereby sign the CLA | |
| ``` | |
| ## 🏢 For Corporate Contributors: | |
| Please email admin@aprilnea.com with your corporate CLA details, then comment: | |
| ``` | |
| Corporate CLA signed - Contact admin@aprilnea.com for verification | |
| ``` | |
| ❓ **Questions?** Contact admin@aprilnea.com | |
| --- | |
| *DevUtility is dual-licensed (GPL-3.0 + Commercial) - CLA enables both licensing models* | |
| custom-pr-sign-comment: 'I have read the CLA Document and I hereby sign the CLA' | |
| custom-allsigned-prcomment: | | |
| ✅ **CLA Signature Complete!** | |
| All contributors have successfully signed the appropriate CLA for **DevUtility**. | |
| 🔍 **Signature Details:** | |
| - Recorded in: [`cla-signatures` branch](https://github.com/AprilNEA/DevUtility/tree/cla-signatures) | |
| - File: `signatures/version1/cla.json` | |
| - Status: ✅ Verified | |
| Your contributions are now covered under our dual-licensing agreement. Thank you for supporting DevUtility! | |
| 🎉 **What's next?** | |
| - Our maintainers will review your code changes | |
| - Feel free to make additional commits if needed | |
| --- | |
| *AprilNEA LLC - Building the future of developer utilities* |