No description
Find a file
Carmen Bianca BAKKER 6ac5c82327
Merge pull request #44 from carmenbianca/tool-codeberg-url
Change reuse-tool URL to Codeberg
2025-11-24 16:23:15 +01:00
.github/workflows Merge pull request #43 from carmenbianca/create-v6 2025-10-06 16:41:00 +02:00
LICENSES add CC0-1.0 license text 2022-01-11 10:46:13 +01:00
action.yml action: Add missing document start 2025-02-11 06:33:10 +01:00
Dockerfile Bump to reuse v6 2025-10-06 16:36:42 +02:00
README.md Change reuse-tool URL to Codeberg 2025-11-12 11:21:57 +01:00
reuse-action-wrapper.sh add workspace as safe Git directory 2022-08-05 14:18:28 +02:00

REUSE Compliance Check

REUSE status

Do you struggle with copyright and licensing in your project? REUSE helps you in three simple steps! Read more on reuse.software and run the short tutorial to learn how to make your copyright and licensing easy and clear.

This action allows users to check for compliance with the REUSE best practices. It is one of many options for projects to include REUSE in their workflows. Please see the help for developers to get an overview.

Features

This action runs the reuse lint command over your repository to check the following information:

  • Is copyright and licensing information available for every single file?
  • Do license texts exist for all found license identifiers?
  • Are there any other problems with detecting copyright and licensing information?

This action uses the REUSE helper tool. For more features, please install the tool locally.

Example usage

You can include the following lines in your workflow .yml file to run the lint subcommand:

# SPDX-FileCopyrightText: 2022 Free Software Foundation Europe e.V. <https://fsfe.org>
#
# SPDX-License-Identifier: CC0-1.0
---
name: REUSE Compliance Check

on: [push, pull_request]

permissions:
  contents: read

jobs:
  reuse-compliance-check:
    runs-on: ubuntu-latest
    steps:
      - name: Checkout
        uses: actions/checkout@v4

      - name: REUSE Compliance Check
        uses: fsfe/reuse-action@v6

If you would like to run other subcommands, you could use the following snippet which outputs a the SPDX bill of materials:

      - name: Checkout
        uses: actions/checkout@v4
      - name: REUSE SPDX SBOM
        uses: fsfe/reuse-action@v6
        with:
          args: spdx

In the same fashion, it is possible to add optional arguments like --include-submodules:

      - name: Checkout
        uses: actions/checkout@v4
      - name: REUSE Compliance Check
        uses: fsfe/reuse-action@v6
        with:
          args: --include-submodules lint

Inputs Description

Name Requirement Default Description
args required lint The subcommand for the REUSE helper tool. Read the tool's documentation for all available subcommands.

Versions

The major version of this action follows the major version of the REUSE helper tool. Make sure to keep up with the latest major version to benefit from the latest features and be able to spot licensing and copyright issues that we detect with newer versions.

License

This action itself is REUSE compliant, so copyright and licensing information is stored in every file. As of March 2020, all files are licensed under GPL-3.0-or-later.

Using the REUSE helper tool, you can run reuse spdx to get a full bill of materials.