Skip to content

Commit

Permalink
Fix condition
Browse files Browse the repository at this point in the history
  • Loading branch information
amezin committed Nov 25, 2023
1 parent d35aadd commit 7ba9385
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion cleanup.js
Original file line number Diff line number Diff line change
Expand Up @@ -236,7 +236,7 @@ async function main() {
async version => {
octokit.log.debug(`Processing ${version.displayImage}`);
const ref = await getRefName(version);
return ref && refs.includes(ref);
return ref && !refs.includes(ref);
},
concurrencyOptions,
);
Expand Down

0 comments on commit 7ba9385

Please sign in to comment.