yorobot 2026.6.13 → 2026.6.14
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/CHANGELOG.md +1 -1
- data/lib/yorobot/version.rb +1 -1
- data/lib/yorobot.rb +24 -1
- metadata +1 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: d470b2be2bef7c488a6951664e22780178ba71dbca33a6bcef4ba4b0dcf27619
|
|
4
|
+
data.tar.gz: 4e14984616e0ed5e51a1663e2b1b951a2127811f782b8083d20b08dbc97b5add
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: ebbcb8a4ec6f0b1139656f723481b36c2293459b18020b8eeb7874918acd01d18940c40b2053c645d41b0d330cd9d32d0653fe1db18ee7f6762cddd0d4273983
|
|
7
|
+
data.tar.gz: 9d4b8b02027977bb877353996f29f8f1259230aa91cc5d82929b2e38144372fd0b9fcfa820bd034c7ac0eb20d802972aacb71eb3f699a88e75d66eafaaf379d4
|
data/CHANGELOG.md
CHANGED
data/lib/yorobot/version.rb
CHANGED
data/lib/yorobot.rb
CHANGED
|
@@ -78,7 +78,13 @@ class Base
|
|
|
78
78
|
|
|
79
79
|
## todo - fix/fix/fix - maybe add a flag to turn on/off debugging
|
|
80
80
|
## or connection test - why? why not?
|
|
81
|
-
|
|
81
|
+
## note - if test is successful still returns
|
|
82
|
+
## with exit code 1 (NOT 0 for success)
|
|
83
|
+
## e.g.
|
|
84
|
+
## Hi yorobot! You've successfully authenticated,
|
|
85
|
+
## but GitHub does not provide shell access.
|
|
86
|
+
##
|
|
87
|
+
## Computer::Shell.run( %Q{ssh -vT git@github.com} )
|
|
82
88
|
|
|
83
89
|
#####
|
|
84
90
|
## setup git
|
|
@@ -135,3 +141,20 @@ end # module Yorobot
|
|
|
135
141
|
|
|
136
142
|
|
|
137
143
|
puts Yorobot::Module::Tool.banner # say hello
|
|
144
|
+
|
|
145
|
+
|
|
146
|
+
|
|
147
|
+
|
|
148
|
+
|
|
149
|
+
|
|
150
|
+
=begin
|
|
151
|
+
more debugging (trouble shooting) info & tips on ssh connect on github:
|
|
152
|
+
|
|
153
|
+
Ensure the line endings are explicitly configured as LF (Unix format), not CRLF.
|
|
154
|
+
|
|
155
|
+
Ensure there is one completely blank line at the absolute end of the file,
|
|
156
|
+
right after -----END OPENSSH PRIVATE KEY-----.
|
|
157
|
+
|
|
158
|
+
Copy the entire text, navigate to your repository on GitHub,
|
|
159
|
+
and update the secret under Settings > Secrets and variables > Actions.
|
|
160
|
+
=end
|