2025-04-01 18:52:22 +02:00
|
|
|
name: eden-license
|
|
|
|
|
|
|
|
|
|
on:
|
2025-06-15 05:02:32 -04:00
|
|
|
pull_request:
|
2025-04-01 18:52:22 +02:00
|
|
|
branches: [ master ]
|
|
|
|
|
|
|
|
|
|
jobs:
|
|
|
|
|
license-header:
|
2025-06-11 21:41:20 -04:00
|
|
|
runs-on: source
|
2025-04-01 18:52:22 +02:00
|
|
|
steps:
|
|
|
|
|
- uses: actions/checkout@v4
|
|
|
|
|
with:
|
|
|
|
|
fetch-depth: 0
|
2025-04-13 19:35:59 -04:00
|
|
|
|
2025-06-09 01:40:21 +00:00
|
|
|
- name: Fetch
|
2025-06-15 05:02:32 -04:00
|
|
|
run: git fetch origin master:master
|
2025-04-13 19:35:59 -04:00
|
|
|
|
2025-04-01 18:52:22 +02:00
|
|
|
- name: Make script executable
|
2025-06-27 23:23:25 +00:00
|
|
|
run: chmod +x ./.ci/license-header.sh
|
2025-04-13 19:35:59 -04:00
|
|
|
|
2025-04-01 18:52:22 +02:00
|
|
|
- name: Check license headers
|
2025-06-27 23:23:25 +00:00
|
|
|
run: ./.ci/license-header.sh
|