Skip to content

Commit 14c57c0

Browse files
committed
fix: add condition
1 parent 1da00b8 commit 14c57c0

1 file changed

Lines changed: 2 additions & 1 deletion

File tree

.github/workflows/_code-quality.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,8 @@ jobs:
1313
- name: Get PR title
1414
id: get-pr-title
1515
run: echo "pr_title=$(jq -r '.pull_request.title' < $GITHUB_EVENT_PATH)" >> $GITHUB_ENV
16-
- run: yarn lint:ci
16+
- if: !contains(steps.get-pr-title.outputs.pr_title, 'test1')
17+
run: yarn lint:ci
1718
- name: Check if pr contains test1
1819
if: contains(steps.get-pr-title.outputs.pr_title, 'test1')
1920
run: |

0 commit comments

Comments
 (0)