diff options
author | Christian Marangi <ansuelsmth@gmail.com> | 2022-11-29 19:53:23 +0100 |
---|---|---|
committer | Christian Marangi <ansuelsmth@gmail.com> | 2022-12-01 01:41:21 +0100 |
commit | e516c31e148b2b83961b096fc0e205d363e65efd (patch) | |
tree | 9996d3ea01531527123c0a31958ff77645943e1d /.github/workflows/labeler.yml | |
parent | 8b95e14e32f3893561b42d9f6a41c06a0aec61cf (diff) | |
download | upstream-e516c31e148b2b83961b096fc0e205d363e65efd.tar.gz upstream-e516c31e148b2b83961b096fc0e205d363e65efd.tar.bz2 upstream-e516c31e148b2b83961b096fc0e205d363e65efd.zip |
CI: add support to tag pr targeting stable branch
Add support to tag pr targeting stable branch matching the simple regex
of openwrt-[0-9][0-9].[0-9][0-9]. The tag that will be added will match
the pr target branch.
(cherry picked from commit b67d284e93ee052e3ea3abb5d3dae55723ce0353)
Signed-off-by: Christian Marangi <ansuelsmth@gmail.com>
Diffstat (limited to '.github/workflows/labeler.yml')
-rw-r--r-- | .github/workflows/labeler.yml | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/.github/workflows/labeler.yml b/.github/workflows/labeler.yml index b67265ca80..62a895a68b 100644 --- a/.github/workflows/labeler.yml +++ b/.github/workflows/labeler.yml @@ -17,3 +17,17 @@ jobs: - uses: actions/labeler@v4 with: repo-token: '${{ secrets.GITHUB_TOKEN }}' + + - name: Check Branch + 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 + fi + + - uses: buildsville/add-remove-label@v2.0.0 + if: ${{ steps.check-branch.outputs.apply-tag }} + with: + token: ${{secrets.GITHUB_TOKEN}} + labels: ${{ github.base_ref }} + type: add |