Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix workflow dispatch - add yq compatibility switch and fix job creation #15

Merged
merged 1 commit into from
Nov 18, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion lua/gh-actions/git.lua
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ local M = {}

---@param job Job
local function create_job(job)
return require('plenary.job').job:new(job)
return require('plenary.job'):new(job)
end

function M.get_current_branch()
Expand Down
2 changes: 1 addition & 1 deletion lua/gh-actions/yaml.lua
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ function M.parse_yaml(yamlstr)
if has_rust_module then
return rust.parse_yaml(yamlstr or '')
else
return vim.json.decode(vim.fn.system('yq', yamlstr))
return vim.json.decode(vim.fn.system({ 'yq', '-j' }, yamlstr))
end
end

Expand Down
Loading