Skip to content

Commit

Permalink
fix: pipeline_id
Browse files Browse the repository at this point in the history
  • Loading branch information
topaxi committed Nov 20, 2024
1 parent fdf4ecd commit 53ab52e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lua/pipeline/providers/gitlab/graphql/init.lua
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ function GitlabGraphQLProvider:fetch()
local pipeline = Mapper.to_pipeline(response.data.project)
local runs = {
[pipeline.pipeline_id] = vim.tbl_map(function(node)
return Mapper.to_run(pipeline.id, node)
return Mapper.to_run(pipeline.pipeline_id, node)
end, response.data.project.pipelines.nodes),
}
local jobs = utils.group_by(
Expand Down

0 comments on commit 53ab52e

Please sign in to comment.