Skip to content

Commit 6047afe

Browse files
Merge pull request #7030 from Shopify/skip-cla-for-cursor
Skip CLA check for Cursor
2 parents bf93ffe + 67f7602 commit 6047afe

1 file changed

Lines changed: 7 additions & 4 deletions

File tree

.github/workflows/cla.yml

Lines changed: 7 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -11,11 +11,14 @@ jobs:
1111
name: "[PR] CLA"
1212
runs-on: ubuntu-latest
1313
if: |
14-
(github.event.issue.pull_request
15-
&& !github.event.issue.pull_request.merged_at
16-
&& contains(github.event.comment.body, 'signed')
14+
github.actor != 'cursoragent'
15+
&& (
16+
(github.event.issue.pull_request
17+
&& !github.event.issue.pull_request.merged_at
18+
&& contains(github.event.comment.body, 'signed')
19+
)
20+
|| (github.event.pull_request && !github.event.pull_request.merged)
1721
)
18-
|| (github.event.pull_request && !github.event.pull_request.merged)
1922
steps:
2023
- uses: Shopify/shopify-cla-action@9938f4b43524d1cfa7471ce9a803edf226697284 # v1
2124
with:

0 commit comments

Comments
 (0)