ci: increase invalid theme close time (#2210)

This commits increases the theme invalid close time to 20 days.
This commit is contained in:
Rick Staa
2022-10-18 17:15:25 +02:00
committed by GitHub
parent 1d10912646
commit dcc4ccd18c
3 changed files with 3 additions and 3 deletions
+1 -1
View File
@@ -127,7 +127,7 @@ const run = async () => {
try {
// Create octokit client.
const dryRun = process.env.DRY_RUN === "true" || false;
const staleDays = process.env.STALE_DAYS || 15;
const staleDays = process.env.STALE_DAYS || 20;
debug("Creating octokit client...");
const octokit = github.getOctokit(getGithubToken());
const { owner, repo } = getRepoInfo(github.context);