dev-cmd: fix GitHub.workflow_dispatch_event kwarg calls

This commit is contained in:
Bo Anderson 2023-10-27 22:37:22 +01:00
parent 832c424dbe
commit f38fc62f90
No known key found for this signature in database
GPG Key ID: 3DB94E204E137D65
2 changed files with 2 additions and 2 deletions

View File

@ -88,7 +88,7 @@ module Homebrew
inputs[:upload] = args.upload? inputs[:upload] = args.upload?
ohai "Dispatching #{tap} bottling request of formula \"#{formula.name}\" for #{runners.join(", ")}" ohai "Dispatching #{tap} bottling request of formula \"#{formula.name}\" for #{runners.join(", ")}"
GitHub.workflow_dispatch_event(user, repo, workflow, ref, inputs) GitHub.workflow_dispatch_event(user, repo, workflow, ref, **inputs)
end end
end end
end end

View File

@ -74,7 +74,7 @@ module Homebrew
end end
ohai "Dispatching #{tap} pull request ##{issue}" ohai "Dispatching #{tap} pull request ##{issue}"
GitHub.workflow_dispatch_event(user, repo, workflow, ref, inputs) GitHub.workflow_dispatch_event(user, repo, workflow, ref, **inputs)
end end
end end
end end