circleci-bundle-update-pr 1.8.0 → 1.8.1
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/.circleci/config.yml +18 -6
- data/Gemfile.lock +4 -3
- data/lib/circleci/bundle/update/pr/version.rb +1 -1
- metadata +3 -3
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: ece2cea4a50275e0a27bceae6737f15669943839
|
4
|
+
data.tar.gz: 0c694b52fdfdae66e220ea678711b949ab327468
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 4841393fc609bc14ce701ab36e3c69856d5ddbc59fff08a9cca1aeeea2d69feef6cf318a4634be4fe17084fe8ae3a59d8e69a6909d333c1fd6f63661b9e56b14
|
7
|
+
data.tar.gz: 541b994c746d081e5018b945fbf20df0bae2e9620dc6ea78a68fd9aae733929321a685339db931968baf34f13b9a4c4fdf5502088bb7e1a4082b1f923a7f1230
|
data/.circleci/config.yml
CHANGED
@@ -4,9 +4,6 @@ jobs:
|
|
4
4
|
docker: &docker
|
5
5
|
- image: ruby:2.4.1-alpine
|
6
6
|
working_directory: /work
|
7
|
-
branches:
|
8
|
-
only:
|
9
|
-
- master
|
10
7
|
steps:
|
11
8
|
- run: &setup_requirements
|
12
9
|
name: Install System Dependencies
|
@@ -37,9 +34,6 @@ jobs:
|
|
37
34
|
continuous_bundle_update:
|
38
35
|
docker: *docker
|
39
36
|
working_directory: /work
|
40
|
-
branches:
|
41
|
-
only:
|
42
|
-
- master
|
43
37
|
steps:
|
44
38
|
- run: *setup_requirements
|
45
39
|
- run: *set_timezone
|
@@ -51,3 +45,21 @@ jobs:
|
|
51
45
|
- deploy:
|
52
46
|
name: Continuous bundle update
|
53
47
|
command: circleci-bundle-update-pr CircleCI circleci@example.com $CIRCLE_BRANCH
|
48
|
+
|
49
|
+
workflows:
|
50
|
+
version: 2
|
51
|
+
build:
|
52
|
+
jobs:
|
53
|
+
- build:
|
54
|
+
filters:
|
55
|
+
branches:
|
56
|
+
only: master
|
57
|
+
nightly:
|
58
|
+
triggers:
|
59
|
+
- schedule:
|
60
|
+
cron: "00 10 * * 5"
|
61
|
+
filters:
|
62
|
+
branches:
|
63
|
+
only: master
|
64
|
+
jobs:
|
65
|
+
- continuous_bundle_update
|
data/Gemfile.lock
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
PATH
|
2
2
|
remote: .
|
3
3
|
specs:
|
4
|
-
circleci-bundle-update-pr (1.8.
|
4
|
+
circleci-bundle-update-pr (1.8.1)
|
5
5
|
compare_linker
|
6
6
|
octokit
|
7
7
|
|
@@ -20,13 +20,14 @@ GEM
|
|
20
20
|
octokit (4.7.0)
|
21
21
|
sawyer (~> 0.8.0, >= 0.5.3)
|
22
22
|
public_suffix (3.0.0)
|
23
|
-
rake (12.
|
23
|
+
rake (12.2.1)
|
24
24
|
sawyer (0.8.1)
|
25
25
|
addressable (>= 2.3.5, < 2.6)
|
26
26
|
faraday (~> 0.8, < 1.0)
|
27
27
|
|
28
28
|
PLATFORMS
|
29
29
|
ruby
|
30
|
+
x86_64-darwin-16
|
30
31
|
|
31
32
|
DEPENDENCIES
|
32
33
|
bundler
|
@@ -34,4 +35,4 @@ DEPENDENCIES
|
|
34
35
|
rake
|
35
36
|
|
36
37
|
BUNDLED WITH
|
37
|
-
1.
|
38
|
+
1.16.0
|
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.8.
|
4
|
+
version: 1.8.1
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Takashi Masuda
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2017-
|
11
|
+
date: 2017-11-03 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: octokit
|
@@ -105,7 +105,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
105
105
|
version: '0'
|
106
106
|
requirements: []
|
107
107
|
rubyforge_project:
|
108
|
-
rubygems_version: 2.6.
|
108
|
+
rubygems_version: 2.6.13
|
109
109
|
signing_key:
|
110
110
|
specification_version: 4
|
111
111
|
summary: Create GitHub PullRequest of bundle update in CircleCI
|