1234567891011121314151617181920212223 |
- name: Merge Conflict Labeler
- on:
- push:
- branches:
- - master
- pull_request_target:
- issue_comment:
- permissions: {}
- jobs:
- label:
- name: Labeling
- runs-on: ubuntu-latest
- if: ${{ github.repository == 'jellyfin/jellyfin' }}
- steps:
- - name: Apply label
- uses: eps1lon/actions-label-merge-conflict@1df065ebe6e3310545d4f4c4e862e43bdca146f0 # v3.0.3
- if: ${{ github.event_name == 'push' || github.event_name == 'pull_request_target'}}
- 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 }}
|