Add K8s auto-develop, license change, secure prompts #6
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 Check | |
| on: | |
| pull_request: | |
| types: [opened, edited, synchronize] | |
| jobs: | |
| cla: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Check CLA agreement | |
| env: | |
| PR_BODY: ${{ github.event.pull_request.body }} | |
| run: | | |
| if echo "$PR_BODY" | grep -q '\[x\].*Contributor License Agreement'; then | |
| echo "CLA accepted." | |
| else | |
| echo "::error::You must read and accept the Contributor License Agreement (CLA) by checking the box in the PR description." | |
| exit 1 | |
| fi |