diff options
author | Christian Marangi <ansuelsmth@gmail.com> | 2022-12-01 01:46:03 +0100 |
---|---|---|
committer | Christian Marangi <ansuelsmth@gmail.com> | 2022-12-01 01:57:01 +0100 |
commit | 7d63c39bf4c1e607f12905258f3efc33d40e7716 (patch) | |
tree | a0f8eaceb17a0e4d09a8d862a462f3c1a82ce26a | |
parent | e516c31e148b2b83961b096fc0e205d363e65efd (diff) | |
download | upstream-7d63c39bf4c1e607f12905258f3efc33d40e7716.tar.gz upstream-7d63c39bf4c1e607f12905258f3efc33d40e7716.tar.bz2 upstream-7d63c39bf4c1e607f12905258f3efc33d40e7716.zip |
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.
(cherry picked from commit af8bc8e51b6daef65c497522b67a1dd9d0cdab84)
Signed-off-by: Christian Marangi <ansuelsmth@gmail.com>
-rw-r--r-- | .github/workflows/labeler.yml | 6 |
1 files 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@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 |