Skip to content
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
10 changes: 10 additions & 0 deletions public/llms-full.txt
Original file line number Diff line number Diff line change
Expand Up @@ -10686,6 +10686,16 @@ interface AiReviewWorkflowSpec
checkout?: string
The pinned `actions/checkout@<sha>` to check the repository out with.
Like {@link hardenRunner}, supplying it renders the separate steps.
pins?: CiPinResolver
Resolves each action's pinned reference by name, exactly as `cicd`'s own
option does.

Supply it when the build sources pins from somewhere that stays current.
Without it the prelude action falls back to the reference baked into the
core this package resolved against — which is a release behind as soon as
the action is released again, and silently so: this file would name a
different commit from every other generated workflow in the repository,
and only a diff would show it.
path?: string
Output path. Defaults to the host's conventional location.
name?: string
Expand Down
7 changes: 7 additions & 0 deletions src/data/api.json
Original file line number Diff line number Diff line change
Expand Up @@ -21177,6 +21177,13 @@
"signature": "checkout?: string",
"doc": "The pinned `actions/checkout@<sha>` to check the repository out with.\nLike {@link hardenRunner}, supplying it renders the separate steps."
},
{
"name": "pins",
"kind": "property",
"optional": true,
"signature": "pins?: CiPinResolver",
"doc": "Resolves each action's pinned reference by name, exactly as `cicd`'s own\noption does.\n\nSupply it when the build sources pins from somewhere that stays current.\nWithout it the prelude action falls back to the reference baked into the\ncore this package resolved against — which is a release behind as soon as\nthe action is released again, and silently so: this file would name a\ndifferent commit from every other generated workflow in the repository,\nand only a diff would show it."
},
{
"name": "path",
"kind": "property",
Expand Down
Loading