Skip to content

Commit

Permalink
use octo.picker
Browse files Browse the repository at this point in the history
  • Loading branch information
GustavEikaas committed Feb 22, 2025
1 parent ff6ef7c commit cc0711d
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 1 deletion.
1 change: 1 addition & 0 deletions lua/octo/pickers/fzf-lua/provider.lua
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,7 @@ M.picker = {
users = require "octo.pickers.fzf-lua.pickers.users",
notifications = M.not_implemented,
milestones = M.not_implemented,
workflow_runs = M.not_implemented,
}

return M
1 change: 1 addition & 0 deletions lua/octo/pickers/snacks/provider.lua
Original file line number Diff line number Diff line change
Expand Up @@ -332,6 +332,7 @@ M.picker = {
project_columns_v2 = M.not_implemented,
prs = M.pull_requests,
repos = M.not_implemented,
workflow_runs = M.not_implemented,
review_commits = M.not_implemented,
search = M.not_implemented,
users = M.not_implemented,
Expand Down
1 change: 1 addition & 0 deletions lua/octo/pickers/telescope/provider.lua
Original file line number Diff line number Diff line change
Expand Up @@ -1496,6 +1496,7 @@ M.picker = {
notifications = M.notifications,
pending_threads = M.pending_threads,
project_cards = M.select_project_card,
workflow_runs = M.workflow_runs,
project_cards_v2 = M.not_implemented,
project_columns = M.select_target_project_column,
project_columns_v2 = M.not_implemented,
Expand Down
1 change: 1 addition & 0 deletions lua/octo/pickers/vim-clap/provider.lua
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,7 @@ M.picker = {
search = M.not_implemented,
users = M.not_implemented,
milestones = M.not_implemented,
workflow_runs = M.not_implemented,
}

return M
2 changes: 1 addition & 1 deletion lua/octo/workflow_runs.lua
Original file line number Diff line number Diff line change
Expand Up @@ -673,7 +673,7 @@ M.list = function()
local co = coroutine.running()
local wf_runs = get_workflow_runs_sync(co)

require("octo.pickers.telescope.provider").workflow_runs(wf_runs, "Workflow runs", render)
require("octo.picker").workflow_runs(wf_runs, "Workflow runs", render)
end

M.refetch = function()
Expand Down

0 comments on commit cc0711d

Please sign in to comment.