Skip to content

Commit

Permalink
fix stale config bug
Browse files Browse the repository at this point in the history
  • Loading branch information
thehanimo committed Oct 10, 2023
1 parent 930cc2d commit d993d59
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion dist/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -10072,7 +10072,7 @@ const run = ({ configPath, localConfigPath, remoteConfigURL, GitHubConfigOwner,
return;
}
}
yield titleCheckFailed({ config });
yield titleCheckFailed({ config: { LABEL, CHECKS, MESSAGES } });
}
catch (error) {
core.info(error);
Expand Down
2 changes: 1 addition & 1 deletion index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -309,7 +309,7 @@ const run = async ({
}
}

await titleCheckFailed({ config });
await titleCheckFailed({ config: { LABEL, CHECKS, MESSAGES } });
} catch (error) {
core.info(error);
}
Expand Down

0 comments on commit d993d59

Please sign in to comment.