From 7804a6eb9b34c67af1af9d0ca7d464634ffca65c Mon Sep 17 00:00:00 2001 From: Ruslan Ibragimov <94184844+5hin0bi@users.noreply.github.com> Date: Thu, 16 Dec 2021 12:24:43 +0300 Subject: [PATCH] add support for new label for branch-remove.yml workflow (#1261) --- .github/workflows/branch-remove.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/branch-remove.yml b/.github/workflows/branch-remove.yml index cef13859e8..ad6e63aa71 100644 --- a/.github/workflows/branch-remove.yml +++ b/.github/workflows/branch-remove.yml @@ -5,7 +5,7 @@ on: types: ['unlabeled'] jobs: remove: - if: ${{ github.event.label.name == 'status/feature_testing' }} + if: ${{ github.event.label.name == 'status/feature_testing' || github.event.label.name == 'status/feature_testing_public' }} runs-on: ubuntu-latest steps: - uses: actions/checkout@v2