From 5c9f30616c87af1d33f176481ddc33b05900a1c3 Mon Sep 17 00:00:00 2001 From: =?utf8?q?Alexander=20K=C3=B6plinger?= Date: Mon, 26 Dec 2022 13:15:55 +0100 Subject: [PATCH] Fix condition in backport.yml to also trigger on schedule (#79951) --- .github/workflows/backport.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/backport.yml b/.github/workflows/backport.yml index fb4f7ec..d604ff4 100644 --- a/.github/workflows/backport.yml +++ b/.github/workflows/backport.yml @@ -14,7 +14,7 @@ permissions: jobs: backport: - if: ${{ contains(github.event.comment.body, '/backport to') }} + if: ${{ contains(github.event.comment.body, '/backport to') || github.event_name == 'schedule' }} uses: dotnet/arcade/.github/workflows/backport-base.yml@main with: pr_description_template: | -- 2.7.4