Skip to content

Commit

Permalink
Add skip cla check label
Browse files Browse the repository at this point in the history
  • Loading branch information
sophschneider committed Sep 22, 2023
1 parent 58ae676 commit 4d7db1f
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions .github/workflows/cla.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,12 +8,15 @@ on:

jobs:
cla:
check-diff:
if: |
!contains(github.event.pull_request.labels.*.name, '✍️Skip CLA Check')
runs-on: ubuntu-latest
if: |
(github.event.issue.pull_request
(github.event.issue.pull_request
&& !github.event.issue.pull_request.merged_at
&& contains(github.event.comment.body, 'signed')
)
)
|| (github.event.pull_request && !github.event.pull_request.merged)
steps:
- uses: Shopify/shopify-cla-action@v1
Expand Down

0 comments on commit 4d7db1f

Please sign in to comment.