typocop 0.1.2 → 0.1.3
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 +4 -4
- data/README.md +1 -1
- data/lib/typocop/client.rb +2 -1
- data/lib/typocop/version.rb +1 -1
- metadata +7 -7
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: d88a12de1edbbc3c7e70471186903cf382f7af793a6ed3991c04ced1cc8783de
|
4
|
+
data.tar.gz: 92bae8b974bab5d365f4008681b31d44d0bb8b211ecbd74686f137504ed39eae
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 3368d345b72253182408536ff51bafd36cee782f0eb68a9167a2bba243b44f01dabc28e909769c19439cd28364be4c282d85dbfa8e4f1880e71adf7faa1561e6
|
7
|
+
data.tar.gz: a015986b15647fbf61e72145a00e0204d3a6cb168b4aed8f5392e3c14b4c6506e4bf68e9669d521977056e11404c2ba78966d3d16931f3df9669a138df3e5111
|
data/README.md
CHANGED
@@ -37,7 +37,7 @@ This GitHub Action automatically checks for typos in the files changed in a pull
|
|
37
37
|
fetch-depth: 0
|
38
38
|
|
39
39
|
- name: Run Typocop Action
|
40
|
-
uses: datpmt/typocop@
|
40
|
+
uses: datpmt/typocop@main
|
41
41
|
with:
|
42
42
|
github_token: ${{ secrets.GITHUB_TOKEN }}
|
43
43
|
pull_request_id: ${{ github.event.pull_request.number }}
|
data/lib/typocop/client.rb
CHANGED
@@ -165,7 +165,8 @@ module Typocop
|
|
165
165
|
@client.create_pull_request_review(
|
166
166
|
@repo_name,
|
167
167
|
PULL_ID,
|
168
|
-
event: 'APPROVE'
|
168
|
+
event: 'APPROVE',
|
169
|
+
body: 'Checked for typos — Everything looks great! :star: :tada: :sparkles:'
|
169
170
|
)
|
170
171
|
rescue Octokit::UnprocessableEntity => e
|
171
172
|
puts e
|
data/lib/typocop/version.rb
CHANGED
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: typocop
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.1.
|
4
|
+
version: 0.1.3
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- datpmt
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date:
|
11
|
+
date: 2025-01-22 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: octokit
|
@@ -56,16 +56,16 @@ dependencies:
|
|
56
56
|
name: typo_checker
|
57
57
|
requirement: !ruby/object:Gem::Requirement
|
58
58
|
requirements:
|
59
|
-
- -
|
59
|
+
- - '='
|
60
60
|
- !ruby/object:Gem::Version
|
61
|
-
version:
|
61
|
+
version: 0.1.7
|
62
62
|
type: :runtime
|
63
63
|
prerelease: false
|
64
64
|
version_requirements: !ruby/object:Gem::Requirement
|
65
65
|
requirements:
|
66
|
-
- -
|
66
|
+
- - '='
|
67
67
|
- !ruby/object:Gem::Version
|
68
|
-
version:
|
68
|
+
version: 0.1.7
|
69
69
|
description: Typocop integrates with GitHub Actions to automatically comment on pull
|
70
70
|
requests when typos are detected or when a PR is approved).
|
71
71
|
email: datpmt.2k@gmail.com
|
@@ -109,7 +109,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
109
109
|
- !ruby/object:Gem::Version
|
110
110
|
version: '0'
|
111
111
|
requirements: []
|
112
|
-
rubygems_version: 3.2.
|
112
|
+
rubygems_version: 3.2.15
|
113
113
|
signing_key:
|
114
114
|
specification_version: 4
|
115
115
|
summary: Comment on PRs with typos or approvals
|