From d3e2af58e9be6121a79ec2ecb00e3f8a030bb914 Mon Sep 17 00:00:00 2001 From: Kat Gerasimova Date: Thu, 13 Jan 2022 14:11:12 +0000 Subject: [PATCH] Fix logic for removing Z-Labs tag with issue automation (#20515) --- .github/workflows/triage-move-unlabelled.yml | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/.github/workflows/triage-move-unlabelled.yml b/.github/workflows/triage-move-unlabelled.yml index 7831f8242b..d6120a8b1a 100644 --- a/.github/workflows/triage-move-unlabelled.yml +++ b/.github/workflows/triage-move-unlabelled.yml @@ -47,7 +47,8 @@ jobs: contains(github.event.issue.labels.*.name, 'Z-IA') || contains(github.event.issue.labels.*.name, 'A-Themes-Custom') || contains(github.event.issue.labels.*.name, 'A-E2EE-Dehydration') || - contains(github.event.issue.labels.*.name, 'A-Tags')) + contains(github.event.issue.labels.*.name, 'A-Tags')) && + contains(github.event.issue.labels.*.name, 'Z-Labs') steps: - uses: actions/github-script@v5 with: @@ -57,4 +58,4 @@ jobs: owner: context.repo.owner, repo: context.repo.repo, name: ['Z-Labs'] - }) \ No newline at end of file + })