Skip to content

Commit

Permalink
feat: add merge conflict labeler workflow (#719)
Browse files Browse the repository at this point in the history
remove dash on label
  • Loading branch information
Gauvino authored Apr 19, 2024
1 parent 0eea109 commit d9d07c7
Showing 1 changed file with 26 additions and 0 deletions.
26 changes: 26 additions & 0 deletions .github/workflows/conflict_labeler.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
name: Merge Conflict Labeler

on:
push:
branches:
- develop
pull_request_target:
branches:
- develop
types: [synchronize]

jobs:
label:
name: Labeling
runs-on: ubuntu-latest
if: ${{ github.repository == 'Fallenbagel/jellyseerr' }}
permissions:
contents: read
pull-requests: write
steps:
- name: Apply label
uses: eps1lon/actions-label-merge-conflict@v3
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.GITHUB_TOKEN }}'

0 comments on commit d9d07c7

Please sign in to comment.