mirror of
https://github.com/jellyfin/jellyfin-web.git
synced 2026-09-02 19:43:13 +03:00
19 lines
553 B
YAML
19 lines
553 B
YAML
name: Automation 🎛️
|
|
|
|
on:
|
|
workflow_call:
|
|
secrets:
|
|
JF_BOT_TOKEN:
|
|
required: true
|
|
|
|
jobs:
|
|
conflicts:
|
|
name: Merge conflict labeling 🏷️
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: eps1lon/actions-label-merge-conflict@0273be72a0bbd58fcd71d0d6c02c209b50d1e5e1 # v3.1.0
|
|
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 }}
|