Files
libopenshot/.github/workflows/reuse.yml
dependabot[bot] 98d247563b Bump actions/checkout from 2 to 3 (#813)
Bumps [actions/checkout](https://github.com/actions/checkout) from 2 to 3.
- [Release notes](https://github.com/actions/checkout/releases)
- [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md)
- [Commits](https://github.com/actions/checkout/compare/v2...v3)

---
updated-dependencies:
- dependency-name: actions/checkout
  dependency-type: direct:production
  update-type: version-update:semver-major
...

Signed-off-by: dependabot[bot] <support@github.com>

Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2022-03-13 20:22:18 -04:00

29 lines
815 B
YAML

# © OpenShot Studios, LLC
#
# SPDX-License-Identifier: LGPL-3.0-or-later
# Workflow to run 'reuse lint' via the reuse-action script,
# which will flag any files added or changed in the repo
# that don't have valid, verifiable license data associated
# with them. See the .reuse/ directory in the repo, and
# for more information visit https://reuse.software/
name: Validate source licensing
on:
# Triggers the workflow on push or pull request events but only for the develop branch
push:
branches: [ develop ]
pull_request:
branches: [ develop ]
# Allows you to run this workflow manually from the Actions tab
workflow_dispatch:
jobs:
check:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: REUSE Compliance Check
uses: fsfe/reuse-action@v1.1.1