Optimize DashScopeDocumentCloud #59 #235
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
| # | |
| # Copyright 2024-2025 the original author or authors. | |
| # | |
| # Licensed under the Apache License, Version 2.0 (the "License"); | |
| # you may not use this file except in compliance with the License. | |
| # You may obtain a copy of the License at | |
| # | |
| # https://www.apache.org/licenses/LICENSE-2.0 | |
| # | |
| # Unless required by applicable law or agreed to in writing, software | |
| # distributed under the License is distributed on an "AS IS" BASIS, | |
| # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | |
| # See the License for the specific language governing permissions and | |
| # limitations under the License. | |
| # | |
| 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: | |
| CLA: | |
| 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/[email protected] | |
| env: | |
| GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
| PERSONAL_ACCESS_TOKEN: ${{ secrets.CLA_REPO_ACCESS_TOKEN }} | |
| with: | |
| path-to-signatures: "signatures/cla.json" | |
| path-to-document: "https://github.com/spring-ai-alibaba/spring-ai-extensions/blob/main/CLA.md" | |
| branch: "main" | |
| allowlist: "bot*,dependabot*,*[bot],EvoltoStart,HunterPorter" | |
| remote-organization-name: "spring-ai-alibaba" | |
| remote-repository-name: "cla" | |
| lock-pullrequest-aftermerge: false | |
| # create-file-commit-message: 'Creating file for storing CLA Signatures' | |
| # signed-commit-message: '$contributorName has signed the CLA in #$pullRequestNo' | |
| # custom-notsigned-prcomment: 'Thanks for your contribution! Please sign our [Contributor License Agreement (CLA)](https://github.com/spring-ai-alibaba/spring-ai-extensions/blob/main/CLA.md) before we can merge your pull request. You can sign the CLA by posting a comment here with the following text: **I have read the CLA Document and I hereby sign the CLA**' | |
| # 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!' |