Skip to content

Changes

Changes #3

Workflow file for this run

name: CLA Checking
on:
push:
jobs:
check-cla:
runs-on: ubuntu-latest
if: ${{ github.event.issue.pull_request }}
steps:
- uses: actions/checkout@v3
- name: install node 20
uses: actions/setup-node@v3
with:
node-version: '20'
- name: run script
run: node .github/actions/check-for-cla/index.js
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
PR_NUMBER: ${{ github.event.number }}