From 6c44fe37230a20ba329f5ef20a8a4d5abfe9d935 Mon Sep 17 00:00:00 2001 From: Trajan0x Date: Sat, 5 Oct 2024 06:03:48 -0400 Subject: [PATCH 1/2] add fe-release label --- .github/workflows/labeler.yml | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/.github/workflows/labeler.yml b/.github/workflows/labeler.yml index 9288fca1bc..8b1d46d95c 100644 --- a/.github/workflows/labeler.yml +++ b/.github/workflows/labeler.yml @@ -31,3 +31,10 @@ jobs: with: token: ${{ secrets.GITHUB_TOKEN }} # Optional filesizelimit: 15MB + + - name: Add 'fe-release' label if branch target is 'fe-release' + if: github.event.pull_request.base.ref == 'fe-release' + uses: actions-ecosystem/action-add-labels@v1 + with: + github_token: ${{ secrets.GITHUB_TOKEN }} + labels: 'fe-release' From efc2bc1af54a8ea72a584dceec8480d8c4d2bcf4 Mon Sep 17 00:00:00 2001 From: Trajan0x Date: Sat, 5 Oct 2024 06:04:02 -0400 Subject: [PATCH 2/2] fix label --- .github/workflows/labeler.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/labeler.yml b/.github/workflows/labeler.yml index 8b1d46d95c..5f7537182b 100644 --- a/.github/workflows/labeler.yml +++ b/.github/workflows/labeler.yml @@ -32,7 +32,7 @@ jobs: token: ${{ secrets.GITHUB_TOKEN }} # Optional filesizelimit: 15MB - - name: Add 'fe-release' label if branch target is 'fe-release' + - name: Add 'fe-release' label if: github.event.pull_request.base.ref == 'fe-release' uses: actions-ecosystem/action-add-labels@v1 with: