You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
22 lines
417 B
22 lines
417 B
name: eden-license
|
|
|
|
on:
|
|
pull_request:
|
|
branches: [ master ]
|
|
|
|
jobs:
|
|
license-header:
|
|
runs-on: source
|
|
steps:
|
|
- uses: actions/checkout@v4
|
|
with:
|
|
fetch-depth: 0
|
|
|
|
- name: Fetch
|
|
run: git fetch origin master:master
|
|
|
|
- name: Make script executable
|
|
run: chmod +x ./.ci/license-header.sh
|
|
|
|
- name: Check license headers
|
|
run: ./.ci/license-header.sh
|