From 5d839595fca9da0c34e189b762db7be5411f66a1 Mon Sep 17 00:00:00 2001 From: Gyanthakur Date: Sat, 19 Oct 2024 16:08:20 +0530 Subject: [PATCH] update workflow --- .github/workflows/autoLabling.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/autoLabling.yml b/.github/workflows/autoLabling.yml index e439ead..e359c2c 100644 --- a/.github/workflows/autoLabling.yml +++ b/.github/workflows/autoLabling.yml @@ -57,11 +57,11 @@ jobs: - name: Determine PR Label id: set-label run: | - if [[ "${{ github.event.pull_request.title }}" =~ bug ]]; then + if [[ "${{ github.event.pull_request.title }}" =~ Bug ]]; then echo "label=bug" >> $GITHUB_ENV - elif [[ "${{ github.event.pull_request.title }}" =~ documentation ]]; then + elif [[ "${{ github.event.pull_request.title }}" =~ Documentation ]]; then echo "label=documentation" >> $GITHUB_ENV - elif [[ "${{ github.event.pull_request.title }}" =~ enhancement ]]; then + elif [[ "${{ github.event.pull_request.title }}" =~ Enhancement ]]; then echo "label=enhancement" >> $GITHUB_ENV elif [[ "${{ github.event.pull_request.title }}" =~ hacktoberfest ]]; then echo "label=hacktoberfest" >> $GITHUB_ENV