From 272fbca4d0db2d1e322ee46314129f187c46e658 Mon Sep 17 00:00:00 2001
From: George Joseph <gjoseph@sangoma.com>
Date: Tue, 2 May 2023 14:09:47 -0600
Subject: [PATCH] .github: Fix reference to CHERRY_PICK_TESTING_IN_PROGRESS

(cherry picked from commit fbde0a71f083684f555b559677a85a0e9cd06b59)
---
 .github/workflows/CherryPickTest.yml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/.github/workflows/CherryPickTest.yml b/.github/workflows/CherryPickTest.yml
index c9ccf4d680..810e3ee1f6 100644
--- a/.github/workflows/CherryPickTest.yml
+++ b/.github/workflows/CherryPickTest.yml
@@ -90,7 +90,7 @@ jobs:
               ;;
             skipped)
               gh pr edit --repo ${{github.repository}} \
-                --remove-label ${{CHERRY_PICK_TESTING_IN_PROGRESS}} \
+                --remove-label ${{vars.CHERRY_PICK_TESTING_IN_PROGRESS}} \
                 --add-label ${{vars.CHERRY_PICK_CHECKS_FAILED_LABEL}} \
                 ${{env.PR_NUMBER}} || :
               echo "::notice::Unit tests were skipped because of an earlier failure"
@@ -98,7 +98,7 @@ jobs:
               ;;
             *)
               gh pr edit --repo ${{github.repository}} \
-                --remove-label ${{CHERRY_PICK_TESTING_IN_PROGRESS}} \
+                --remove-label ${{vars.CHERRY_PICK_TESTING_IN_PROGRESS}} \
                 --add-label ${{vars.CHERRY_PICK_CHECKS_FAILED_LABEL}} \
                 ${{env.PR_NUMBER}} || :
               echo "::error::One or more tests failed ($RESULT)"
-- 
GitLab