Skip to content

Commit

Permalink
Discard changes to .github/workflows/label-conflicting-pr.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
timja authored Sep 10, 2024
1 parent d179503 commit 54b7139
Showing 1 changed file with 21 additions and 0 deletions.
21 changes: 21 additions & 0 deletions .github/workflows/label-conflicting-pr.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
name: "Label conflicting PRs"
on:
push:
pull_request_target:
types: [synchronize]

permissions:
pull-requests: write

jobs:
main:
if: github.event.pull_request.user.login != 'dependabot[bot]'
runs-on: ubuntu-latest
steps:
- name: Label conflicting PRs
uses: eps1lon/[email protected]
with:
dirtyLabel: "unresolved-merge-conflict"
repoToken: "${{ secrets.GITHUB_TOKEN }}"
commentOnDirty: "Please take a moment and address the merge conflicts of your pull request. Thanks!"
continueOnMissingPermissions: true

0 comments on commit 54b7139

Please sign in to comment.