Skip to content

Commit

Permalink
update workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
Gyanthakur committed Oct 19, 2024
1 parent 703ef03 commit 5d83959
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/autoLabling.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit 5d83959

Please sign in to comment.