You've already forked libopenshot
mirror of
https://github.com/OpenShot/libopenshot.git
synced 2026-03-02 08:53:52 -08:00
Bumps [fsfe/reuse-action](https://github.com/fsfe/reuse-action) from 1.2.0 to 2.0.0. - [Release notes](https://github.com/fsfe/reuse-action/releases) - [Commits](https://github.com/fsfe/reuse-action/compare/v1.2.0...v2.0.0) --- updated-dependencies: - dependency-name: fsfe/reuse-action dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <support@github.com>
29 lines
815 B
YAML
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@v2.0.0
|