Skip to content

Commit

Permalink
test: add custom workflow to run based upon comment on PR(take 3)
Browse files Browse the repository at this point in the history
Signed-off-by: Vibhu Prashar <[email protected]>
  • Loading branch information
vprashar2929 committed Aug 9, 2024
1 parent 621ba62 commit d6b4a61
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/custom-test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ on:

jobs:
test:
if: github.event.issue.pull_request && github.event.comment.body == '/test'
if: github.event.issue.pull_request && toLower(github.event.comment.body) == 'test'
runs-on: ubuntu-latest
steps:
- name: Checkout
Expand Down

0 comments on commit d6b4a61

Please sign in to comment.