From 4bb3039560201ec99b54c8ca7dfd498094d13cd7 Mon Sep 17 00:00:00 2001 From: Carles Cufi Date: Fri, 1 Apr 2022 11:46:42 +0200 Subject: [PATCH] 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 --- .github/workflows/do_not_merge.yml | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/.github/workflows/do_not_merge.yml b/.github/workflows/do_not_merge.yml index 783229b6525..aad8403f39e 100644 --- a/.github/workflows/do_not_merge.yml +++ b/.github/workflows/do_not_merge.yml @@ -4,6 +4,12 @@ on: pull_request: types: [synchronize, opened, reopened, labeled, unlabeled] + workflow_run: + workflows: [Manifest] + types: + - completed + + jobs: do-not-merge: if: ${{ contains(github.event.*.labels.*.name, 'DNM') }}