Skip to content

Commit 8b7e54c

Browse files
committed
keep original liceense in tact with with upstream fork
add license checker to GH action
1 parent 1a20425 commit 8b7e54c

File tree

5 files changed

+79
-857
lines changed

5 files changed

+79
-857
lines changed
Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
name: license-check
2+
3+
on:
4+
push:
5+
branches:
6+
- dev
7+
pull_request:
8+
branches:
9+
- dev
10+
11+
jobs:
12+
license-check:
13+
runs-on: ubuntu-latest
14+
steps:
15+
- uses: actions/checkout@v4
16+
17+
- name: Setup Bun
18+
uses: oven-sh/setup-bun@v1
19+
20+
- name: Install dependencies
21+
run: bun install --frozen-lockfile
22+
23+
- name: Audit licenses
24+
run: bun run script/license-checker.ts

LICENSE

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
MIT License
22

3-
Copyright (c) 2025 spin.dev
3+
Copyright (c) 2025 models.dev
4+
Copyright (c) 2025 Nathan Papes
45

56
Permission is hereby granted, free of charge, to any person obtaining a copy
67
of this software and associated documentation files (the "Software"), to deal

README.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
[![license-check](https://github.com/papes1ns/spin.dev/actions/workflows/license-check.yml/badge.svg)](https://github.com/papes1ns/spin.dev/actions/workflows/license-check.yml)
12
[![validate](https://github.com/papes1ns/spin.dev/actions/workflows/validate.yml/badge.svg)](https://github.com/papes1ns/spin.dev/actions/workflows/validate.yml)
23
[![deploy](https://github.com/papes1ns/spin.dev/actions/workflows/deploy.yml/badge.svg)](https://github.com/papes1ns/spin.dev/actions/workflows/deploy.yml)
34

0 commit comments

Comments
 (0)