Skip to content

Commit

Permalink
Create github workflow to check for copyright and license notices
Browse files Browse the repository at this point in the history
  • Loading branch information
omar-selo committed Jan 17, 2025
1 parent 5f9c17a commit e595f7e
Showing 1 changed file with 20 additions and 0 deletions.
20 changes: 20 additions & 0 deletions .github/workflows/check_copyright_notices.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
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/header@v0.6.0

0 comments on commit e595f7e

Please sign in to comment.