Skip to content

Commit 393bcae

Browse files
committed
.github: use SPDX annotation in line with the kernel
This uses the copyleft-next tag preferred in the Linux kernel. Signed-off-by: Luis Chamberlain <mcgrof@kernel.org>
1 parent 3dca240 commit 393bcae

File tree

8 files changed

+9
-8
lines changed

8 files changed

+9
-8
lines changed

.github/workflows/autorebase.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# SPDX-License-Identifier: GPL-2.0
1+
# SPDX-License-Identifier: GPL-2.0 OR copyleft-next-0.3.1
22
---
33
name: Autorebase
44

.github/workflows/kdevops-cleanup.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# SPDX-License-Identifier: GPL-2.0
1+
# SPDX-License-Identifier: GPL-2.0 OR copyleft-next-0.3.1
22
#
33
# This can be used towards the end of your action. All tasks here run even if
44
# any of the previous tasks failed.

.github/workflows/kdevops-generic.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# SPDX-License-Identifier: GPL-2.0
1+
# SPDX-License-Identifier: GPL-2.0 OR copyleft-next-0.3.1
22
#
33
# Most simple Linux kernel subsystems can be tested with this target
44
# test setup. For more elaborates tests look for a topic branch under the

.github/workflows/kdevops-init.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# SPDX-License-Identifier: GPL-2.0
1+
# SPDX-License-Identifier: GPL-2.0 OR copyleft-next-0.3.1
22
#
33
# This can be used as a initialization workflow for most Linux kernel
44
# development environments. This takes care of:

.github/workflows/kdevops.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# SPDX-License-Identifier: GPL-2.0
1+
# SPDX-License-Identifier: GPL-2.0 OR copyleft-next-0.3.1
22
#
33
# Main unified kdevops CI workflow for Linux kernel trees.
44
# This is the primary entry point that kernel trees should reference.
@@ -54,4 +54,4 @@ jobs:
5454
needs: [run-tests, setup]
5555
if: always() # This ensures cleanup runs even if run-tests fails
5656
uses: ./.github/workflows/kdevops-cleanup.yml
57-
secrets: inherit
57+
secrets: inherit

VERSIONING.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,4 +47,4 @@ Minor version bumps (v1.0 → v1.1) for:
4747

4848
### 5. Documentation Updates
4949

50-
Update `KERNEL_TREE_SETUP.md` examples to use tags once v1.0.0 is released.
50+
Update `KERNEL_TREE_SETUP.md` examples to use tags once v1.0.0 is released.

scripts/github_output.sh

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
#!/usr/bin/env bash
2+
# SPDX-License-Identifier: GPL-2.0 OR copyleft-next-0.3.1
23
#
34
# Usage: ./github_output.sh key value
45
set -euxo pipefail

scripts/korg-releases.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
#!/usr/bin/env python3
2-
# SPDX-License-Identifier: copyleft-next-0.3.1
2+
# SPDX-License-Identifier: GPL-2.0 OR copyleft-next-0.3.1
33
import sys
44
import logging
55
import argparse

0 commit comments

Comments
 (0)