feat(ci): mark PRs with merge conflicts

This commit is contained in:
Elian Doran 2025-07-12 10:08:33 +03:00
parent 7f3934f4c3
commit ef2f2f17b4
No known key found for this signature in database

15
.github/workflows/checks.yml vendored Normal file
View File

@ -0,0 +1,15 @@
name: Checks
on:
push:
pull_request_target:
types: [synchronize]
jobs:
main:
runs-on: ubuntu-latest
steps:
- name: Check if PRs have conflicts
uses: eps1lon/actions-label-merge-conflict@v3
with:
dirtyLabel: "merge-conflicts"
repoToken: "${{ secrets.GITHUB_TOKEN }}"