From 84894110508fa4c5c350f3d0c80748a2a11edde4 Mon Sep 17 00:00:00 2001 From: Bruce Bujon Date: Mon, 1 Jul 2024 17:58:33 +0200 Subject: [PATCH] fix(ci): Fix milestone assignment automation --- .github/workflows/add-milestone-to-pull-requests.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/add-milestone-to-pull-requests.yaml b/.github/workflows/add-milestone-to-pull-requests.yaml index 689cdb59548..683e3ba37cc 100644 --- a/.github/workflows/add-milestone-to-pull-requests.yaml +++ b/.github/workflows/add-milestone-to-pull-requests.yaml @@ -27,7 +27,7 @@ jobs: return } // Get the base branch - const base = '${{ github.event.pull_request.base.label }}' + const base = '${{ github.event.pull_request.base.ref }}' // Look for the matching milestone let milestoneNumber = null if (base == 'master') {