* 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
16 lines
336 B
YAML
16 lines
336 B
YAML
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
|