CI: labeler: fix wrong label for pr targeting stable branch
authorChristian Marangi <ansuelsmth@gmail.com>
Thu, 1 Dec 2022 00:46:03 +0000 (01:46 +0100)
committerChristian Marangi <ansuelsmth@gmail.com>
Thu, 1 Dec 2022 00:57:01 +0000 (01:57 +0100)
The label used for stable branch is in the form of
release/[0-9][0-9].[0-9][0-9]
Currently we apply the name of the target branch as the label, fix this
and correctly use the current label.

(cherry picked from commit af8bc8e51b6daef65c497522b67a1dd9d0cdab84)
Signed-off-by: Christian Marangi <ansuelsmth@gmail.com>
.github/workflows/labeler.yml

index 62a895a68b822f2be24e13c0fa83e48cb448d7e4..5f82b88a50a7dc5e7e5e4ab82c04b2bccfeab36f 100644 (file)
@@ -22,12 +22,12 @@ jobs:
         id: check-branch
         run: |
           if echo "${{ github.base_ref }}" | grep -q -E 'openwrt-[0-9][0-9]\.[0-9][0-9]'; then
-              echo "apply-tag=yes" >> $GITHUB_OUTPUT
+              echo "release-tag=$(echo ${{ github.base_ref }} | sed 's/openwrt-/release\//')" >> $GITHUB_OUTPUT
           fi
 
       - uses: buildsville/add-remove-label@v2.0.0
-        if: ${{ steps.check-branch.outputs.apply-tag }}
+        if: ${{ steps.check-branch.outputs.release-tag }}
         with:
           token: ${{secrets.GITHUB_TOKEN}}
-          labels: ${{ github.base_ref }}
+          labels: ${{ steps.check-branch.outputs.release-tag }}
           type: add