Skip to content

Commit

Permalink
fix: add missing field to state
Browse files Browse the repository at this point in the history
  • Loading branch information
topaxi committed Oct 23, 2024
1 parent 37be09d commit b8d4ff7
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions lua/gh-actions/store.lua
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@ local utils = require('gh-actions.utils')

---@class GhActionsState
---@field repo string
---@field server string
---@field workflows GhWorkflow[]
---@field workflow_runs GhWorkflowRun[]
---@field workflow_jobs table<integer, GhWorkflowRunJob[]>
Expand All @@ -14,6 +15,7 @@ local utils = require('gh-actions.utils')
---@type GhActionsState
local initialState = {
repo = '',
server = '',
workflows = {},
workflow_runs = {},
workflow_jobs = {},
Expand Down

0 comments on commit b8d4ff7

Please sign in to comment.