From ef2f2f17b46447e11c9048e95bc3e7f6fd9bbb90 Mon Sep 17 00:00:00 2001 From: Elian Doran Date: Sat, 12 Jul 2025 10:08:33 +0300 Subject: [PATCH] feat(ci): mark PRs with merge conflicts --- .github/workflows/checks.yml | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 .github/workflows/checks.yml diff --git a/.github/workflows/checks.yml b/.github/workflows/checks.yml new file mode 100644 index 000000000..5299fa772 --- /dev/null +++ b/.github/workflows/checks.yml @@ -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 }}"