We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 151db94 + b775e9c commit 78f2bb1Copy full SHA for 78f2bb1
.github/probots.yml
.github/workflows/cla.yml
@@ -0,0 +1,22 @@
1
+name: Contributor License Agreement (CLA)
2
+
3
+on:
4
+ pull_request_target:
5
+ types: [opened, synchronize]
6
+ issue_comment:
7
+ types: [created]
8
9
+jobs:
10
+ cla:
11
+ runs-on: ubuntu-latest
12
+ if: |
13
+ (github.event.issue.pull_request
14
+ && !github.event.issue.pull_request.merged_at
15
+ && contains(github.event.comment.body, 'signed')
16
+ )
17
+ || (github.event.pull_request && !github.event.pull_request.merged)
18
+ steps:
19
+ - uses: Shopify/shopify-cla-action@v1
20
+ with:
21
+ github-token: ${{ secrets.GITHUB_TOKEN }}
22
+ cla-token: ${{ secrets.CLA_TOKEN }}
0 commit comments