Skip to content

Commit

Permalink
Make sure compat id is a string to avoid API client issues
Browse files Browse the repository at this point in the history
  • Loading branch information
etagwerker committed Sep 27, 2024
1 parent 103e16f commit a14dea2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion app/services/compats/check.rb
Original file line number Diff line number Diff line change
Expand Up @@ -185,7 +185,7 @@ def check_with_bundler_github
ruby_version: @compat.rails_release.compatible_ruby_version.to_s,
bundler_version: @compat.rails_release.compatible_bundler_version.to_s,
dependencies: JSON::dump(@compat.dependencies),
compat_id: @compat.id
compat_id: @compat.id.to_s
}

# Trigger the workflow dispatch event
Expand Down

0 comments on commit a14dea2

Please sign in to comment.