schema_dev 4.1.0 → 4.1.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: ec4c4b34d4c065f5027f7b4edf76af56b328d10194ba6e4b6ec13d6b0ffdc4bf
4
- data.tar.gz: dc39ed695a1fa9df914cbaa0aa4163d4bade79237e80ab306238bee5605755d2
3
+ metadata.gz: '069541cc90199caf6edba1204d1fac74c7f95a917fae588bfc2b619cccf74c68'
4
+ data.tar.gz: 9386c5b2336b795263a14f9d716efe02e756d27f68e1f6ae3c09d3caf31d6ae9
5
5
  SHA512:
6
- metadata.gz: af15e3126328563021a8662d2a0c9180f6978a6095de9471ac2627bfbb0cf64ba47773f48f3c3c4fe21f1871511b0c249c83a9f87801651b1fef7fd367647bf3
7
- data.tar.gz: 4f2d82816b77a658f41d5afb34f8f9f4401a58a739f1b1fc05ddc1a3b5d8ef304613363f30a2d3ed14da17cf15fb991d5febf5bb5c3ae4b0ad28cc568977058c
6
+ metadata.gz: fdb76d00701923057eef2e2c7fc1c49f53ace6e6a80c57808e1c24bc30e30ebfa4c72fb5e298d44e45cd922fc86ba7ff39b184dc0333126296738c0f39fd2486
7
+ data.tar.gz: 24bb533311da24ea06279941a9ac4634f54f98ee663b8198de023203881713d6b13d0d9f8441fe782e013c48b353cdfbe951118890df12a51abffd7539b4ee60
@@ -7,7 +7,7 @@ on:
7
7
  pull_request:
8
8
 
9
9
  concurrency:
10
- group: ${{ github.head_ref }}
10
+ group: "ci-${{ github.ref }}"
11
11
  cancel-in-progress: true
12
12
 
13
13
  jobs:
data/README.md CHANGED
@@ -136,6 +136,7 @@ Which defines the rake task `create_databases` and also a task for github action
136
136
 
137
137
  Release notes for schema_dev versions:
138
138
 
139
+ * **4.1.1** - Fix github actions generated files for concurrency detection
139
140
  * **4.1.0** - Switch to GitHub actions instead of travis CI
140
141
  * **4.0.0** - Drop support for AR < 5.2 and add AR 6.0 and 6.1
141
142
  * **3.13.1** - Adjust travis.yml generation to work with mysql again
@@ -27,7 +27,7 @@ module SchemaDev
27
27
  pull_request: nil,
28
28
  },
29
29
  concurrency: {
30
- group: '${{ github.head_ref }}',
30
+ group: 'ci-${{ github.ref }}',
31
31
  'cancel-in-progress': true,
32
32
  }
33
33
  }.freeze
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module SchemaDev
4
- VERSION = '4.1.0'
4
+ VERSION = '4.1.1'
5
5
  end
@@ -31,7 +31,7 @@ describe SchemaDev::GithubActions do
31
31
  - master
32
32
  pull_request:
33
33
  concurrency:
34
- group: "${{ github.head_ref }}"
34
+ group: ci-${{ github.ref }}
35
35
  cancel-in-progress: true
36
36
  jobs:
37
37
  test:
@@ -99,7 +99,7 @@ describe SchemaDev::GithubActions do
99
99
  - master
100
100
  pull_request:
101
101
  concurrency:
102
- group: "${{ github.head_ref }}"
102
+ group: ci-${{ github.ref }}
103
103
  cancel-in-progress: true
104
104
  jobs:
105
105
  test:
@@ -180,7 +180,7 @@ describe SchemaDev::GithubActions do
180
180
  - master
181
181
  pull_request:
182
182
  concurrency:
183
- group: "${{ github.head_ref }}"
183
+ group: ci-${{ github.ref }}
184
184
  cancel-in-progress: true
185
185
  jobs:
186
186
  test:
@@ -247,7 +247,7 @@ describe SchemaDev::GithubActions do
247
247
  - master
248
248
  pull_request:
249
249
  concurrency:
250
- group: "${{ github.head_ref }}"
250
+ group: ci-${{ github.ref }}
251
251
  cancel-in-progress: true
252
252
  jobs:
253
253
  test:
@@ -360,7 +360,7 @@ describe SchemaDev::GithubActions do
360
360
  - master
361
361
  pull_request:
362
362
  concurrency:
363
- group: "${{ github.head_ref }}"
363
+ group: ci-${{ github.ref }}
364
364
  cancel-in-progress: true
365
365
  jobs:
366
366
  test:
@@ -459,7 +459,7 @@ describe SchemaDev::GithubActions do
459
459
  - master
460
460
  pull_request:
461
461
  concurrency:
462
- group: "${{ github.head_ref }}"
462
+ group: ci-${{ github.ref }}
463
463
  cancel-in-progress: true
464
464
  jobs:
465
465
  test:
@@ -582,7 +582,7 @@ describe SchemaDev::GithubActions do
582
582
  - master
583
583
  pull_request:
584
584
  concurrency:
585
- group: "${{ github.head_ref }}"
585
+ group: ci-${{ github.ref }}
586
586
  cancel-in-progress: true
587
587
  jobs:
588
588
  test:
@@ -699,7 +699,7 @@ describe SchemaDev::GithubActions do
699
699
  - master
700
700
  pull_request:
701
701
  concurrency:
702
- group: "${{ github.head_ref }}"
702
+ group: ci-${{ github.ref }}
703
703
  cancel-in-progress: true
704
704
  jobs:
705
705
  test:
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: schema_dev
3
3
  version: !ruby/object:Gem::Version
4
- version: 4.1.0
4
+ version: 4.1.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - ronen barzel