Merge pull request #268 from datalad/dependabot/github_actions/dawidd… #12
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
| # SPDX-FileCopyrightText: 2020-2026 DataLad Team <team@datalad.org> | |
| # SPDX-License-Identifier: MIT | |
| name: REUSE Compliance | |
| on: | |
| pull_request: | |
| paths: | |
| - 'REUSE.toml' | |
| - 'LICENSES/**' | |
| - 'patches/**' | |
| - '**/*.py' | |
| - '**/*.sh' | |
| - '**/*.yaml' | |
| - '**/*.yml' | |
| - '**/*.md' | |
| - '.github/workflows/reuse.yaml' | |
| push: | |
| branches: | |
| - master | |
| jobs: | |
| reuse: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v6 | |
| - name: REUSE compliance check | |
| uses: fsfe/reuse-action@v6 |