You've already forked libopenshot
mirror of
https://github.com/OpenShot/libopenshot.git
synced 2026-03-02 08:53:52 -08:00
59138ea3e4
* reuse-managed license/copyright headers reuse is a tool for compliance with the REUSE recommendations. See <https://reuse.software/> for more information, and <https://reuse.readthedocs.io/> for the online documentation. * Set jsoncpp license * Add MIT license for Decklink sources * Explicitly license examples/ - Add headers to source files - Change blanket licensing in .reuse/dep5 to only cover binary media - Import CC-BY-3.0 license and assign to sintel_trailer
30 lines
1.1 KiB
YAML
30 lines
1.1 KiB
YAML
# © OpenShot Studios, LLC
|
|
#
|
|
# SPDX-License-Identifier: LGPL-3.0-or-later
|
|
|
|
name: Label merge conflicts
|
|
|
|
# Controls when the action will run. Triggers the workflow on push to repo branches
|
|
# (It shouldn't run on pull requests, as it won't have the right credentials to
|
|
# edit labels on other PRs.)
|
|
on: push
|
|
|
|
# A workflow run is made up of one or more jobs that can run sequentially or in parallel
|
|
jobs:
|
|
triage:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: eps1lon/actions-label-merge-conflict@v2.0.1
|
|
with:
|
|
# Token for the repository. Can be passed in using {{ secrets.GITHUB_TOKEN }}
|
|
repoToken: ${{ secrets.GITHUB_TOKEN }}
|
|
# Name of the label which indicates that the branch is dirty
|
|
dirtyLabel: 'conflicts'
|
|
# Number of seconds after which the action runs again if the mergable state is unknown.
|
|
retryAfter: 60
|
|
# Number of times the action retries calculating the mergable state
|
|
retryMax: 5
|
|
# String. Comment to add when the pull request is conflicting. Supports markdown.
|
|
commentOnDirty: 'Merge conflicts have been detected on this PR, please resolve.'
|
|
|