sashimi_tanpopo 0.3.0 → 0.3.1
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 +7 -1
- data/Dockerfile +1 -1
- data/lib/sashimi_tanpopo/provider/github.rb +0 -5
- data/lib/sashimi_tanpopo/version.rb +1 -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: 5b601594298bcbff56d16d990111eccabc3d203aba608232577ddc20ab795c81
|
|
4
|
+
data.tar.gz: 51a8838571d9e4a4eeb6ebcd317fce18644d72813d8de7cafb03be33dedd833f
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: dff61357e4df01e146b400dfbef42a20e5918b3781b20b101eceefda24ee118a49c7b6bca0a0c4b5844f6f17fb92db0f624f1db6d64573cfb673c3c7b7657e87
|
|
7
|
+
data.tar.gz: ffdbdc3490dc5a23324e1e67e065b16cee18823732fda3ed49a22a9518f099f8124d9a56192aeea8a3ecbc17e986eec8d15a038c4ff9a989f107505786926e1c
|
data/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,11 @@
|
|
|
1
1
|
## [Unreleased]
|
|
2
|
-
[full changelog](http://github.com/sue445/sashimi_tanpopo/compare/v0.3.
|
|
2
|
+
[full changelog](http://github.com/sue445/sashimi_tanpopo/compare/v0.3.1...main)
|
|
3
|
+
|
|
4
|
+
## [0.3.1](https://github.com/sue445/sashimi_tanpopo/releases/tag/v0.3.1) - 2025-10-31
|
|
5
|
+
[full changelog](http://github.com/sue445/sashimi_tanpopo/compare/v0.3.0...v0.3.1)
|
|
6
|
+
|
|
7
|
+
* Disable file existence checks when using `--github-step-summary`
|
|
8
|
+
* https://github.com/sue445/sashimi_tanpopo/pull/66
|
|
3
9
|
|
|
4
10
|
## [0.3.0](https://github.com/sue445/sashimi_tanpopo/releases/tag/v0.3.0) - 2025-10-30
|
|
5
11
|
[full changelog](http://github.com/sue445/sashimi_tanpopo/compare/v0.2.0...v0.3.0)
|
data/Dockerfile
CHANGED
|
@@ -168,11 +168,6 @@ module SashimiTanpopo
|
|
|
168
168
|
def write_summary_file(changed_files)
|
|
169
169
|
return if @summary_path.empty?
|
|
170
170
|
|
|
171
|
-
unless File.exist?(@summary_path)
|
|
172
|
-
SashimiTanpopo.logger.warn "#{@summary_path} does not exist"
|
|
173
|
-
return
|
|
174
|
-
end
|
|
175
|
-
|
|
176
171
|
summary = self.class.generate_summary(changed_files: changed_files, dry_run: @dry_run)
|
|
177
172
|
|
|
178
173
|
File.open(@summary_path, "a") do |f|
|