-
Notifications
You must be signed in to change notification settings - Fork 33
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Migrate off probot-CLA to new GitHub Action (#71)
- Loading branch information
1 parent
74e87ef
commit 96bdab1
Showing
2 changed files
with
26 additions
and
2 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,26 @@ | ||
name: Contributor License Agreement (CLA) | ||
|
||
on: | ||
pull_request_target: | ||
types: [opened, synchronize] | ||
issue_comment: | ||
types: [created] | ||
|
||
permissions: | ||
pull-requests: write # to set the label | ||
actions: write # to re-run the workflow when a comment is received | ||
|
||
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 }} |