circleci-bundle-update-pr 1.0.8 → 1.1.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: e925d530e83340bd60bdeffeff81dca6c92865b4
4
- data.tar.gz: b6d2646561afbc98d8a81a252ba26202c66c45cb
3
+ metadata.gz: 6dda1087187e97bacfe4e8a071d4949be18a1fcd
4
+ data.tar.gz: 73876ce1864ed2d7fe29c4445b3e31a050d00d25
5
5
  SHA512:
6
- metadata.gz: 835e05746a079d7075717d26f29578425bc5e6d832884ea2fb515305b2b5756827326b41414e6aaa21de13334260dea49fa8cc5779fe6a698c24d24ad2cfddc8
7
- data.tar.gz: b3bf85a5b1304ab7381d6ba7d9eb8ff8b4b3dbbfa7dc8b25f141f335c0a14d38dc4a77cd3e684519729dc27d0165f16f0bc213eb2a406ac489e41dc8eccd1058
6
+ metadata.gz: 87266f58b01f76553cc2c3a71a6089660d29f0ac29d52a4f4ee1531fe6ba11d2ef21ecf74bdc4422eedc181fefbdb95636856c0ffb46024978fa49e6aeaf7c7f
7
+ data.tar.gz: 0af21ac436a419e532abebd7368908e98423c8621485653ffcb4a963fd6b4fb1568684a569ca3be50618fd2954b137125bfdc08cb096cee988976de3a4029bce
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- circleci-bundle-update-pr (1.0.8)
4
+ circleci-bundle-update-pr (1.1.0)
5
5
  compare_linker
6
6
  octokit (~> 3.8)
7
7
 
data/README.md CHANGED
@@ -24,7 +24,7 @@ Or install it yourself as:
24
24
 
25
25
  ## Contributing
26
26
 
27
- 1. Fork it ( https://github.com/[my-github-username]/circleci-bundle-update-pr/fork )
27
+ 1. Fork it ( https://github.com/masutaka/circleci-bundle-update-pr/fork )
28
28
  2. Create your feature branch (`git checkout -b my-new-feature`)
29
29
  3. Commit your changes (`git commit -am 'Add some feature'`)
30
30
  4. Push to the branch (`git push origin my-new-feature`)
@@ -37,7 +37,7 @@ module Circleci
37
37
  private_class_method :create_branch
38
38
 
39
39
  def self.create_pull_request(repo_full_name, branch, now)
40
- title = "bundle update #{now.strftime('%Y-%m-%d')}"
40
+ title = "bundle update at #{now.strftime('%Y-%m-%d %H:%M:%S')}"
41
41
  body = "auto generated by [CircleCI of #{ENV['CIRCLE_PROJECT_REPONAME']}](https://circleci.com/gh/#{repo_full_name})"
42
42
  client = Octokit::Client.new(access_token: ENV["GITHUB_ACCESS_TOKEN"])
43
43
  client.create_pull_request(repo_full_name, "master", branch, title, body)
@@ -2,7 +2,7 @@ module Circleci
2
2
  module Bundle
3
3
  module Update
4
4
  module Pr
5
- VERSION = "1.0.8"
5
+ VERSION = "1.1.0"
6
6
  end
7
7
  end
8
8
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: circleci-bundle-update-pr
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.0.8
4
+ version: 1.1.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Takashi Masuda
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2015-08-28 00:00:00.000000000 Z
11
+ date: 2015-08-29 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: octokit