Update dependency @types/react-dom to v19.1.5 #146
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: Check CLA in PR description | |
on: | |
pull_request: | |
# Run when PRs are opened, reopened, edited or updated with new commits | |
types: [opened, reopened, synchronize, edited] | |
jobs: | |
check-cla: | |
name: Check CLA in PR description | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4 | |
- name: Validate PR has CLA confirmation | |
# Exclude automated PRs from bots | |
if: ${{ (startsWith(github.head_ref, 'dependabot') || startsWith(github.head_ref, 'renovate')) == false }} | |
env: | |
PR_DESCRIPTION: ${{ github.event.pull_request.body }} | |
run: | | |
./scripts/check_cla.py |