You've already forked libopenshot
mirror of
https://github.com/OpenShot/libopenshot.git
synced 2026-03-02 08:53:52 -08:00
Bumps [eps1lon/actions-label-merge-conflict](https://github.com/eps1lon/actions-label-merge-conflict) from 2.0.1 to 2.1.0. - [Release notes](https://github.com/eps1lon/actions-label-merge-conflict/releases) - [Changelog](https://github.com/eps1lon/actions-label-merge-conflict/blob/main/CHANGELOG.md) - [Commits](https://github.com/eps1lon/actions-label-merge-conflict/compare/v2.0.1...v2.1.0) --- updated-dependencies: - dependency-name: eps1lon/actions-label-merge-conflict dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] <support@github.com>
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.1.0
|
|
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.'
|
|
|