mirror of
https://github.com/jellyfin/jellyfin-web.git
synced 2024-11-16 02:18:16 -07:00
19 lines
391 B
YAML
19 lines
391 B
YAML
name: "Merge Conflicts"
|
|
|
|
on:
|
|
push:
|
|
branches:
|
|
- master
|
|
pull_request:
|
|
types:
|
|
- synchronize
|
|
jobs:
|
|
triage:
|
|
runs-on: ubuntu-latest
|
|
if: github.repository == 'jellyfin/jellyfin-web'
|
|
steps:
|
|
- uses: mschilde/auto-label-merge-conflicts@master
|
|
with:
|
|
CONFLICT_LABEL_NAME: "merge conflict"
|
|
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|