Polish agentic chat and move agent to Vertex #923
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: check-cla | |
| on: | |
| pull_request: | |
| branches: | |
| - main | |
| merge_group: | |
| branches: | |
| - main | |
| permissions: | |
| contents: read | |
| pull-requests: write | |
| jobs: | |
| check-cla: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: dembrane/[email protected] | |
| id: check | |
| continue-on-error: true | |
| - name: Post CLA comment on PR | |
| if: ${{ github.event_name == 'pull_request' && (steps.check.outcome == 'failure' || steps.check.outputs.missing) }} | |
| uses: marocchino/sticky-pull-request-comment@v2 | |
| with: | |
| message: | | |
| Hi ${{steps.check.outputs.missing}}! | |
| Thank you for contributing to Dembrane ECHO! Before we consider your Pull Request, we ask that you sign [our Contributor License Agreement (CLA)](https://github.com/dembrane/echo/blob/main/CLA.md). This is only required for your first Pull Request. | |
| Please [review the CLA](https://github.com/dembrane/echo/blob/main/CLA.md), and sign it by adding your GitHub username to [the contributors.yml file](https://github.com/${{github.event.pull_request.head.repo.full_name}}/blob/${{github.head_ref}}/contributors.yml). Thanks! | |
| - name: Remove CLA comment on PR | |
| if: ${{ github.event_name == 'pull_request' && steps.check.outcome == 'success' && !steps.check.outputs.missing }} | |
| uses: marocchino/sticky-pull-request-comment@v2 | |
| with: | |
| delete: true |