1
0
Fork 0
mirror of https://github.com/portainer/portainer.git synced 2025-08-02 20:35:25 +02:00

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
This commit is contained in:
Chaim Lev-Ari 2021-08-10 07:15:29 +03:00 committed by GitHub
parent 9af291b67d
commit 75baf14b38
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

15
.github/workflows/label-conflcts.yaml vendored Normal file
View file

@ -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