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 +4 -4
- data/.github/workflows/reviewdog.yml +22 -11
- data/Gemfile.lock +1 -1
- data/lib/fa-harness-tools/github_client.rb +7 -0
- data/lib/fa-harness-tools/version.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 9c128a701040b2cc181bbf7a73d3f814339f525bcb9c06a9a740e58b38a9ab00
|
4
|
+
data.tar.gz: '098a970dea309a6ea68c5b0f1f496f49eab52e978bac0d0651a309f78b17c0ff'
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: c1d333cfb1320af0179461f5f4f141144036f953ea4fd132f48c9abd796500177bc95a6d1e3ab90375bed0e3dd4af7478da3ae17601cd443d7c3f4188ca4403d
|
7
|
+
data.tar.gz: 05eba7e775df16c4ff8a1c3d066d66d7edc999ede6fe0087e91233376d97e15e5881e4238d9a24bacc12b8cd283b00d915bdcaa065ee7c16cf930ba5e3032666
|
@@ -1,13 +1,24 @@
|
|
1
|
-
name:
|
2
|
-
|
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
|
-
|
6
|
-
|
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
@@ -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
|
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.
|
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-
|
11
|
+
date: 2023-07-04 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: octokit
|