Skip to content

42 tab serie s structure #7

42 tab serie s structure

42 tab serie s structure #7

Workflow file for this run

# SPDX-FileCopyrightText: 2024 Marcellino Palerme <[email protected]>
#
# SPDX-License-Identifier: MIT
# thx:
# https://stackoverflow.com/a/65389878
# https://stackoverflow.com/a/67840292
name: REUSE Compliance Check
on:
# thx: https://stackoverflow.com/a/71057825
workflow_dispatch:
pull_request_target:
branches:
- main
- develop
jobs:
Check-REUSE-compliant:
runs-on: ubuntu-latest
steps:
# Load my repo
- uses: actions/checkout@v4
# Check if futur new repo is REUSE compliant
- name: REUSE Compliance Check
uses: fsfe/reuse-action@v3
with:
args: --include-submodules lint
# Close pull request if not REUSE compliant
- name: Stop pull request
if: ${{ failure() }}
uses: superbrothers/close-pull-request@v3
with:
# Optional. Post a issue comment just before closing a pull request.
comment: "We do not accept PRs. Your part isn't REUSE Compliant. (see reuse.software)."