gha_config 0.18 → 0.19

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: 4dedc710facebd9c6ac3826132d29dabfa49304d6bb41ba6e143659611ea6f2f
4
- data.tar.gz: eebaf08f4252ab8796b005732ed87745e9dea1978ad739fa8a25cd6417a40eed
3
+ metadata.gz: 16a002da5b1417fffef6cf22c9ec166e258c4000377072a952fa8998f9c33146
4
+ data.tar.gz: f822acdf86ae16bc7b94275777ce0f693a154b8d417d16845e3ac993889b49e7
5
5
  SHA512:
6
- metadata.gz: 96212938458677189ca1576df3ec259e917e5b62455bb61c05e95c303588e9a78a69808dd3690fd564779032acf6a42586a4ed98d3adba2b3fed4efaa5aaf291
7
- data.tar.gz: 156081246d3e7c70254f2ac1fea31006abe69ed0b2f9fea6ccf9ce3b127f2c5eac615f70c323c3401bed3e8942328915977fd24ca36ef8907446c284a1cc098c
6
+ metadata.gz: 730cf61647df7abffa62cf6ed4fc35bff2bee33dd0365e5e8a13b0c42f49f7cbf7286ac93d0d5bf859026d8bdd0fe1a617cb90dd8eab2a2d0c44f0684664b433
7
+ data.tar.gz: b73d3b11704a7ed1dddffeaffa8a2219fbb3486fc3df996386008d9deaf3ea0f081b1e2317c5d776ec3f661fda3566bb3db3a30fce05d44faf256aea30508af3
data/CHANGELOG.md CHANGED
@@ -5,7 +5,7 @@ All notable changes to this project will be documented in this file.
5
5
  The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/)
6
6
  and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
7
7
 
8
- ## [0.18] - 2021-08-06
8
+ ## [0.19] - 2021-08-06
9
9
  - Add `_options_` for submodules and SSH.
10
10
 
11
11
  ## [0.17] - 2021-08-04
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module GhaConfig
4
- VERSION = '0.18'
4
+ VERSION = '0.19'
5
5
  end
@@ -47,7 +47,7 @@ module GhaConfig
47
47
  'job_status' => '${{ job.status }}'
48
48
  }}
49
49
  if config.options['enable_ssh']
50
- flipp_global['env']['enable_ssh'] = true
50
+ flipp_global['with']['enable_ssh'] = true
51
51
  end
52
52
  job['steps'].unshift(flipp_global)
53
53
  checkout = {
@@ -56,7 +56,7 @@ module GhaConfig
56
56
  }
57
57
  if config.options['use_submodules']
58
58
  checkout['with'] = {
59
- 'token' => "${{ secrets.FLIPPCIRCLECIPULLER_REPO_TOKEN || github.token }}",
59
+ 'token' => "${{ secrets.FLIPPCIRCLECIPULLER_REPO_TOKEN }}",
60
60
  'submodules' => 'recursive'
61
61
  }
62
62
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: gha_config
3
3
  version: !ruby/object:Gem::Version
4
- version: '0.18'
4
+ version: '0.19'
5
5
  platform: ruby
6
6
  authors:
7
7
  - Daniel Orner