Add license notice checks for backend #2
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
name: Check copyright and license notices | |
on: | |
push: | |
branches-ignore: | |
- 'main' | |
# Cancel inprogress runs if new commit pushed | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.ref }} | |
cancel-in-progress: true | |
jobs: | |
check-notices: | |
runs-on: [self-hosted, linux, large, jammy, x64] | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Check License Header | |
uses: apache/skywalking-eyes/[email protected] |