Merge pull request #4164 from communitybridge/fix/multi_commit_issue #755
This file contains 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
--- | |
# Copyright The Linux Foundation and each contributor to CommunityBridge. | |
# SPDX-License-Identifier: MIT | |
name: License Header Check | |
on: | |
push: | |
branches: | |
- main | |
pull_request: | |
branches: | |
- main | |
jobs: | |
license-header-check: | |
name: License Header Check | |
runs-on: ubuntu-latest | |
environment: dev | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v3 | |
- name: Check License Headers - Python | |
working-directory: cla-backend | |
run: | | |
./check-headers.sh | |
- name: Check License Headers - Go | |
working-directory: cla-backend-go | |
run: | | |
./check-headers.sh |