mirror of
https://github.com/jellyfin/jellyfin-web.git
synced 2024-11-16 02:18:16 -07:00
22 lines
616 B
YAML
22 lines
616 B
YAML
name: 'Automation'
|
|
|
|
on:
|
|
push:
|
|
branches:
|
|
- master
|
|
pull_request_target:
|
|
types:
|
|
- synchronize
|
|
|
|
jobs:
|
|
triage:
|
|
name: 'Merge conflict labeling'
|
|
runs-on: ubuntu-latest
|
|
if: ${{ github.repository == 'jellyfin/jellyfin-web' }}
|
|
steps:
|
|
- uses: eps1lon/actions-label-merge-conflict@1b1b1fcde06a9b3d089f3464c96417961dde1168 # v3.0.2
|
|
with:
|
|
dirtyLabel: 'merge conflict'
|
|
commentOnDirty: 'This pull request has merge conflicts. Please resolve the conflicts so the PR can be successfully reviewed and merged.'
|
|
repoToken: ${{ secrets.JF_BOT_TOKEN }}
|