Skip to content

Commit

Permalink
Merge pull request #8 from Shopify/rm-correct-project
Browse files Browse the repository at this point in the history
Follow the correct process to open source a Shopify repository
  • Loading branch information
rafaelfranca committed Jun 16, 2023
2 parents 61bffb5 + 77a31ea commit e91d9de
Show file tree
Hide file tree
Showing 3 changed files with 24 additions and 2 deletions.
22 changes: 22 additions & 0 deletions .github/workflows/cla.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
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 }}
2 changes: 1 addition & 1 deletion LICENSE.txt
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
The MIT License (MIT)

Copyright (c) 2023 Peter Zhu
Copyright (c) 2023 Shopify Inc.

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
Expand Down
2 changes: 1 addition & 1 deletion shopify-ruby-definitions.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ Gem::Specification.new do |spec|
spec.name = "shopify-ruby-definitions"
spec.version = ShopifyRubyDefinitions::VERSION
spec.authors = ["Peter Zhu"]
spec.email = ["peter@peterzhu.ca"]
spec.email = ["ruby@shopify.com"]

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

0 comments on commit e91d9de

Please sign in to comment.