Skip to content

Commit

Permalink
Update comment
Browse files Browse the repository at this point in the history
Co-authored-by: Henry Mercer <henry.mercer@me.com>
  • Loading branch information
angelapwen and henrymercer committed Mar 23, 2023
1 parent 707a6bb commit 7929472
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/actions-util.ts
Original file line number Diff line number Diff line change
Expand Up @@ -683,7 +683,7 @@ export async function printDebugLogs(config: Config) {

export type UploadKind = "always" | "failure-only" | "never";

// Returns a ValidUploadValue, converting unspecified and deprecated upload inputs appropriately.
// Parses the `upload` input into an `UploadKind`, converting unspecified and deprecated upload inputs appropriately.
export function getUploadValue(input: string | undefined): UploadKind {
if (input === undefined || input === "true" || input === "always") {
return "always";
Expand Down

0 comments on commit 7929472

Please sign in to comment.