Do not use fivetran synced dates older than or equal March 9 2024 [prod] #1315
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
| --- | |
| # 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 |