Skip to content

Commit

Permalink
Don't require excluded versions
Browse files Browse the repository at this point in the history
  • Loading branch information
nmlinaric committed May 31, 2021
1 parent 48f7eeb commit 5f2bce7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ import { getOctokit } from "@actions/github";
import { OctokitResponse } from "@octokit/types"
import { FetchPackagesResponse } from "./types";

const excludedVersion = getInput('excluded_versions', { required: true });
const excludedVersion = getInput('excluded_versions', { required: false });
const numberOfVersionsToKeep = Number(getInput('num_versions_to_keep', { required: true }));
const packageName = getInput('package_name', { required: true });
const token = getInput('token', { required: true });
Expand Down

0 comments on commit 5f2bce7

Please sign in to comment.