[BUILD] Add workflow reuse-compliance to CI#806
Merged
michalharakal merged 5 commits intoJul 10, 2026
Merged
Conversation
There was a problem hiding this comment.
Pull request overview
Adds REUSE compliance checking to the project’s CI so the repository can automatically verify SPDX/license metadata alignment with the REUSE specification, and surfaces the compliance status via a README badge.
Changes:
- Added a new GitHub Actions workflow to run the FSFE REUSE compliance action on pushes/PRs (and on a weekly schedule).
- Added a REUSE status badge to the README.
Reviewed changes
Copilot reviewed 2 out of 2 changed files in this pull request and generated 3 comments.
| File | Description |
|---|---|
| README.md | Adds a REUSE status badge to advertise compliance state. |
| .github/workflows/reuse-compliance.yml | Introduces a REUSE compliance GitHub Actions workflow for CI enforcement. |
💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.
| [](https://central.sonatype.com/artifact/sk.ainet.core/skainet-lang-core) | ||
| [](https://github.com/SKaiNET-developers/SKaiNET/graphs/contributors) | ||
| [](https://deepwiki.com/SKaiNET-developers/SKaiNET) | ||
| [] |
Comment on lines
+8
to
+15
| push: | ||
| branches: | ||
| - master | ||
|
|
||
| pull_request: | ||
| branches: | ||
| - master | ||
|
|
Comment on lines
+20
to
+21
| # Set default permission for all jobs to none | ||
| permissions: {} |
…n and develop, where the latter is the current default branch
… avoid permission issues from the checkout action
| [](https://central.sonatype.com/artifact/sk.ainet.core/skainet-lang-core) | ||
| [](https://github.com/SKaiNET-developers/SKaiNET/graphs/contributors) | ||
| [](https://deepwiki.com/SKaiNET-developers/SKaiNET) | ||
| [REUSE status](https://api.reuse.software/badge/github.com/SKaiNET-developers/SKaiNET)](https://api.reuse.software/badge/github.com/SKaiNET-developers/SKaiNET) |
Comment on lines
+8
to
+12
| push: | ||
| branches: | ||
| - main | ||
| - develop | ||
|
|
Comment on lines
+13
to
+16
| pull_request: | ||
| branches: | ||
| - main | ||
| - develop |
michalharakal
merged commit Jul 10, 2026
36cc958
into
SKaiNET-developers:develop
2 of 4 checks passed
MacOS
pushed a commit
to MacOS/SKaiNET
that referenced
this pull request
Jul 13, 2026
PR SKaiNET-developers#806 added the reuse-compliance CI workflow, but the repo had no REUSE infrastructure, so the check fails on develop. Declare project-wide copyright/license via a single REUSE.toml (MIT, matching the root LICENCE) and add the required license texts under LICENSES/. precedence = "closest" keeps vendored third-party files (gradlew, onnx-ml.proto3) on their own Apache-2.0 headers. No source files touched. reuse lint: 1391/1391 files compliant with REUSE 3.3. Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
MacOS
pushed a commit
to MacOS/SKaiNET
that referenced
this pull request
Jul 13, 2026
Bump version 0.35.0 -> 0.36.0 (gradle.properties, docs/antora.yml, README quickstart). Promote CHANGELOG [Unreleased] to [0.36.0] with the REUSE compliance setup (SKaiNET-developers#806, SKaiNET-developers#807, SKaiNET-developers#808), skainet-data POM coordinate alignment (SKaiNET-developers#793), and the ComputeGraphExecutor permute-axes fix (SKaiNET-developers#803). Refresh README "What's New" and add a Contributors (0.36.0) section. Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
This
PRadds the workflowreuse-compliance.ymlworkflow to theCIpipeline (#805).The
REUSEcompliance workflow runs on allpushandpull requests. ThisPRadds an important best practise for compliance within the FOSS community and is part of a larger effort to implement FOSS best practises (#594).