Skip to content

Commit e91d9de

Browse files
authored
Merge pull request #8 from Shopify/rm-correct-project
Follow the correct process to open source a Shopify repository
2 parents 61bffb5 + 77a31ea commit e91d9de

File tree

3 files changed

+24
-2
lines changed

3 files changed

+24
-2
lines changed

.github/workflows/cla.yml

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -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 }}

LICENSE.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
The MIT License (MIT)
22

3-
Copyright (c) 2023 Peter Zhu
3+
Copyright (c) 2023 Shopify Inc.
44

55
Permission is hereby granted, free of charge, to any person obtaining a copy
66
of this software and associated documentation files (the "Software"), to deal

shopify-ruby-definitions.gemspec

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ Gem::Specification.new do |spec|
66
spec.name = "shopify-ruby-definitions"
77
spec.version = ShopifyRubyDefinitions::VERSION
88
spec.authors = ["Peter Zhu"]
9-
spec.email = ["peter@peterzhu.ca"]
9+
spec.email = ["ruby@shopify.com"]
1010

1111
spec.summary = "Ruby builds used at Shopify."
1212
spec.homepage = "https://github.com/Shopify/ruby-definitions"

0 commit comments

Comments
 (0)