From 75baf14b3881b5138bca7df28e72e1e6edd09f46 Mon Sep 17 00:00:00 2001 From: Chaim Lev-Ari Date: Tue, 10 Aug 2021 07:15:29 +0300 Subject: [PATCH] chore(github): add label conflicts workflow (#5225) * chore(github): add label conflicts workflow [DTD-66] * chore(github): update label on push to release branch * chore(github): rename branch * chore(github): remove test branch --- .github/workflows/label-conflcts.yaml | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 .github/workflows/label-conflcts.yaml diff --git a/.github/workflows/label-conflcts.yaml b/.github/workflows/label-conflcts.yaml new file mode 100644 index 000000000..3d101aa23 --- /dev/null +++ b/.github/workflows/label-conflcts.yaml @@ -0,0 +1,15 @@ +on: + push: + branches: + - develop + - 'release/**' +jobs: + triage: + runs-on: ubuntu-latest + steps: + - uses: mschilde/auto-label-merge-conflicts@master + with: + CONFLICT_LABEL_NAME: 'has conflicts' + GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} + MAX_RETRIES: 5 + WAIT_MS: 5000