Skip to content

Commit

Permalink
fix(snyk-ci): removed toLowerCase function as it does not exit
Browse files Browse the repository at this point in the history
  • Loading branch information
rafaelromcar-parabol committed Mar 18, 2024
1 parent bd907a9 commit 2c98ca1
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions .github/workflows/snyk-yarn-lock-commit.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ on:

jobs:
update-snyk-pr:
if: contains(github.event.pull_request.title.toLowerCase(), '[snyk]')
if: contains(github.event.pull_request.title, '[Snyk]')
runs-on: ubuntu-latest

steps:
Expand All @@ -26,4 +26,3 @@ jobs:
git add yarn.lock
git commit -m "Update yarn.lock" || echo "No changes to commit"
git push

0 comments on commit 2c98ca1

Please sign in to comment.