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@gmail.com>
This commit is contained in:
		
							
								
								
									
										6
									
								
								.github/workflows/labeler.yml
									
									
									
									
										vendored
									
									
								
							
							
						
						
									
										6
									
								
								.github/workflows/labeler.yml
									
									
									
									
										vendored
									
									
								
							| @@ -22,12 +22,12 @@ jobs: | |||||||
|         id: check-branch |         id: check-branch | ||||||
|         run: | |         run: | | ||||||
|           if echo "${{ github.base_ref }}" | grep -q -E 'openwrt-[0-9][0-9]\.[0-9][0-9]'; then |           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 |           fi | ||||||
|  |  | ||||||
|       - uses: buildsville/add-remove-label@v2.0.0 |       - uses: buildsville/add-remove-label@v2.0.0 | ||||||
|         if: ${{ steps.check-branch.outputs.apply-tag }} |         if: ${{ steps.check-branch.outputs.release-tag }} | ||||||
|         with: |         with: | ||||||
|           token: ${{secrets.GITHUB_TOKEN}} |           token: ${{secrets.GITHUB_TOKEN}} | ||||||
|           labels: ${{ github.base_ref }} |           labels: ${{ steps.check-branch.outputs.release-tag }} | ||||||
|           type: add |           type: add | ||||||
|   | |||||||
		Reference in New Issue
	
	Block a user
	 Christian Marangi
					Christian Marangi