[openwrt/openwrt] CI: labeler: fix wrong label for pr targeting stable branch
LEDE Commits
lede-commits at lists.infradead.org
Sun Dec 4 08:49:10 PST 2022
ansuel pushed a commit to openwrt/openwrt.git, branch openwrt-21.02:
https://git.openwrt.org/26f35c40b624600b07292951c0ced58db500ce66
commit 26f35c40b624600b07292951c0ced58db500ce66
Author: Christian Marangi <ansuelsmth at gmail.com>
AuthorDate: Thu Dec 1 01:46:03 2022 +0100
CI: labeler: fix wrong label for pr targeting stable branch
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.
Signed-off-by: Christian Marangi <ansuelsmth at gmail.com>
(cherry picked from commit af8bc8e51b6daef65c497522b67a1dd9d0cdab84)
---
.github/workflows/labeler.yml | 6 +++---
1 file changed, 3 insertions(+), 3 deletions(-)
diff --git a/.github/workflows/labeler.yml b/.github/workflows/labeler.yml
index 62a895a68b..5f82b88a50 100644
--- a/.github/workflows/labeler.yml
+++ b/.github/workflows/labeler.yml
@@ -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 at 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
More information about the lede-commits
mailing list