We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f94e7e0 commit 2dbe8e4Copy full SHA for 2dbe8e4
.github/actions/Locker/Locker.ts
@@ -29,7 +29,7 @@ export class Locker extends ActionBase {
29
const closedTimestamp = daysAgoToHumanReadbleDate(this.daysSinceClose)
30
const updatedTimestamp = daysAgoToHumanReadbleDate(this.daysSinceUpdate)
31
32
- const query = this.buildQuery((this.daysSinceClose ? `closed:<${updatedTimestamp} ` : "") + (this.daysSinceUpdate ? `updated:<${updatedTimestamp} ` : "") + "is:closed is:unlocked");
+ const query = this.buildQuery((this.daysSinceClose ? `closed:<${closedTimestamp} ` : "") + (this.daysSinceUpdate ? `updated:<${updatedTimestamp} ` : "") + "is:closed is:unlocked");
33
34
for await (const page of this.github.query({ q: query })) {
35
await Promise.all(
0 commit comments