Skip to content

Commit 8b1120e

Browse files
committed
Fix switched repo and owner
1 parent 659478c commit 8b1120e

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.github/workflows/lock.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,8 +23,8 @@ jobs:
2323
const _FOUR_WEEKS_MILLISECONDS = 28 * 24 * 60 * 60 * 1000;
2424
const _FOUR_WEEKS_DATE = new Date(Date.now() - _FOUR_WEEKS_MILLISECONDS);
2525
const FOUR_WEEKS_AGO = `${_FOUR_WEEKS_DATE.toISOString().substring(0, 10)}T00:00:00Z`;
26-
const OWNER = context.repo.repo;
27-
const REPO = context.repo.owner;
26+
const OWNER = context.repo.owner;
27+
const REPO = context.repo.repo;
2828
2929
try {
3030
for (const thread_type of ["issue", "pr"]) {

0 commit comments

Comments
 (0)