GitPedia

Reuse action

A GitHub action to check repositories for REUSE compliance

From fsfe·Updated June 22, 2026·View on GitHub·

Do you struggle with copyright and licensing in your project? REUSE helps you in three simple steps! Read more on [reuse.software](https://reuse.software) and run the short tutorial to learn how to make your copyright and licensing easy and clear. The project is written primarily in Shell, first published in 2020. Key topics include: action, linter, reuse.

Latest release: v6.0.0
October 6, 2025View Changelog →
<!-- SPDX-FileCopyrightText: 2020 Free Software Foundation Europe e.V. <https://fsfe.org> SPDX-License-Identifier: GPL-3.0-or-later -->

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:

yml
# 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:

yml
- 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:

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

Inputs Description

NameRequirementDefaultDescription
argsrequiredlintThe 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.

Contributors

Showing top 8 contributors by commit count.

View all contributors on GitHub →

This article is auto-generated from fsfe/reuse-action via the GitHub API.Last fetched: 6/27/2026