fa-harness-tools 1.3.1 → 1.3.2

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
  SHA256:
3
- metadata.gz: 5b079414af732f3b0085b679d22c09f3cd8d97b47a2188dcdd3bf184493d448a
4
- data.tar.gz: 9601a92287a4977b73fbe1d1538ec849b6e955ccc7af6a146ef62983bf220dcd
3
+ metadata.gz: 9c128a701040b2cc181bbf7a73d3f814339f525bcb9c06a9a740e58b38a9ab00
4
+ data.tar.gz: '098a970dea309a6ea68c5b0f1f496f49eab52e978bac0d0651a309f78b17c0ff'
5
5
  SHA512:
6
- metadata.gz: 7952f3c4896ce382956f49eef7602ad6bdcacab6c791c951389d1efb4835777cd18df47a1abdba6038dc84e106d688560ab5f0a4277a00009b9cc9ce07ab2b0d
7
- data.tar.gz: de3a126c09d6c42b9e0a9e5b356d29fd997d7e4f45dfab125981a794f3a7b2cf6b5efcc10611731594149afd9de1ab9ba6ecede77985bbdb312377ba0e134ddb
6
+ metadata.gz: c1d333cfb1320af0179461f5f4f141144036f953ea4fd132f48c9abd796500177bc95a6d1e3ab90375bed0e3dd4af7478da3ae17601cd443d7c3f4188ca4403d
7
+ data.tar.gz: 05eba7e775df16c4ff8a1c3d066d66d7edc999ede6fe0087e91233376d97e15e5881e4238d9a24bacc12b8cd283b00d915bdcaa065ee7c16cf930ba5e3032666
@@ -1,13 +1,24 @@
1
- name: reviewdog
2
- on: [pull_request]
1
+ name: Lint workflow files
2
+
3
+ on:
4
+ push:
5
+ paths:
6
+ - '.github/workflows/*.yml'
7
+ - '.github/workflows/*.yaml'
8
+ pull_request:
9
+ types:
10
+ - opened
11
+ - reopened
12
+ - synchronize
13
+ paths:
14
+ - '.github/workflows/*.yml'
15
+ - '.github/workflows/*.yaml'
16
+
17
+ permissions:
18
+ pull-requests: write
19
+ contents: read
20
+
3
21
  jobs:
4
22
  actionlint:
5
- name: runner / actionlint
6
- runs-on: ubuntu-latest
7
- steps:
8
- - uses: actions/checkout@v2
9
- - name: actionlint
10
- uses: reviewdog/action-actionlint@v1
11
- with:
12
- fail_on_error: true
13
- reporter: github-pr-review
23
+ uses: fac/hermod/.github/workflows/actionlint.yml@master
24
+ secrets: inherit
data/Gemfile.lock CHANGED
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- fa-harness-tools (1.3.1)
4
+ fa-harness-tools (1.3.2)
5
5
  fugit (~> 1.3)
6
6
  octokit (~> 4.0)
7
7
  pastel (~> 0.7)
@@ -7,6 +7,13 @@ module FaHarnessTools
7
7
 
8
8
  def initialize(oauth_token:, owner:, repo:)
9
9
  @octokit = Octokit::Client.new(access_token: oauth_token)
10
+ @octokit.connection_options = {
11
+ request: {
12
+ open_timeout: 60,
13
+ timeout: 60
14
+ }
15
+ }
16
+
10
17
  @owner = owner
11
18
  @repo = repo
12
19
  @oauth_token = oauth_token
@@ -1,3 +1,3 @@
1
1
  module FaHarnessTools
2
- VERSION = "1.3.1"
2
+ VERSION = "1.3.2"
3
3
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: fa-harness-tools
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.3.1
4
+ version: 1.3.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - FreeAgent
8
8
  autorequire:
9
9
  bindir: exe
10
10
  cert_chain: []
11
- date: 2023-06-22 00:00:00.000000000 Z
11
+ date: 2023-07-04 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: octokit