Skip to content

Add K8s auto-develop, license change, secure prompts #5

Add K8s auto-develop, license change, secure prompts

Add K8s auto-develop, license change, secure prompts #5

Workflow file for this run

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