gh: actions: Triggger the do not merge after manifest runs
For some reason when the manifest action runs and removes the DNM label, the Do Not Merge workflow doesn't run automatically. Force it running whenever the Manifest workflow completes to fix this. Signed-off-by: Carles Cufi <carles.cufi@nordicsemi.no>
This commit is contained in:
parent
35e058bcad
commit
4bb3039560
6
.github/workflows/do_not_merge.yml
vendored
6
.github/workflows/do_not_merge.yml
vendored
|
@ -4,6 +4,12 @@ on:
|
||||||
pull_request:
|
pull_request:
|
||||||
types: [synchronize, opened, reopened, labeled, unlabeled]
|
types: [synchronize, opened, reopened, labeled, unlabeled]
|
||||||
|
|
||||||
|
workflow_run:
|
||||||
|
workflows: [Manifest]
|
||||||
|
types:
|
||||||
|
- completed
|
||||||
|
|
||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
do-not-merge:
|
do-not-merge:
|
||||||
if: ${{ contains(github.event.*.labels.*.name, 'DNM') }}
|
if: ${{ contains(github.event.*.labels.*.name, 'DNM') }}
|
||||||
|
|
Loading…
Reference in a new issue