Skip to content

Commit

Permalink
Merge pull request #106 from Shopify/add-cla
Browse files Browse the repository at this point in the history
Create Contributor License Agreement Workflow
  • Loading branch information
ShopKlaw authored Aug 9, 2023
2 parents 457d0dc + 1832a7f commit 2d4b2c7
Showing 1 changed file with 23 additions and 0 deletions.
23 changes: 23 additions & 0 deletions .github/workflows/cla.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
# .github/workflows/cla.yml
name: Contributor License Agreement (CLA)

on:
pull_request_target:
types: [opened, synchronize]
issue_comment:
types: [created]

jobs:
cla:
runs-on: ubuntu-latest
if: |
(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
with:
github-token: ${{ secrets.GITHUB_TOKEN }}
cla-token: ${{ secrets.CLA_TOKEN }}

0 comments on commit 2d4b2c7

Please sign in to comment.