-
-
Notifications
You must be signed in to change notification settings - Fork 289
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: add merge conflict labeler workflow (#719)
remove dash on label
- Loading branch information
Showing
1 changed file
with
26 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 }}' |