summaryrefslogtreecommitdiff
path: root/.github/workflows/cla-check.yaml
blob: 6d1f4dea3a1b2f32f16083b91ac5e8d0ffa59b69 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
name: cla-check
on: [pull_request]

jobs:
  cla-check:
    runs-on: ubuntu-18.04
    steps:
      - name: Install dependencies
        run: |
          sudo apt-get update
          sudo apt-get install python3-launchpadlib git
      - name: Checkout code
        uses: actions/checkout@v2
        with:
          fetch-depth: 0
          # ensure we pull PR /head, not autogenerated /merge commit
          ref: ${{ github.event.pull_request.head.sha }}
      - name: Fetching base ref ${{ github.base_ref }}
        run: git fetch origin ${{ github.base_ref }}:${{ github.base_ref }}
      - name: Perform CLA check
        run: ./.github/workflows/tools/cla_check.py "${{ github.base_ref }}..HEAD"