Skip to content

Commit

Permalink
Fix switched repo and owner
Browse files Browse the repository at this point in the history
  • Loading branch information
AA-Turner committed Nov 17, 2024
1 parent 659478c commit 8b1120e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/lock.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,8 +23,8 @@ jobs:
const _FOUR_WEEKS_MILLISECONDS = 28 * 24 * 60 * 60 * 1000;
const _FOUR_WEEKS_DATE = new Date(Date.now() - _FOUR_WEEKS_MILLISECONDS);
const FOUR_WEEKS_AGO = `${_FOUR_WEEKS_DATE.toISOString().substring(0, 10)}T00:00:00Z`;
const OWNER = context.repo.repo;
const REPO = context.repo.owner;
const OWNER = context.repo.owner;
const REPO = context.repo.repo;
try {
for (const thread_type of ["issue", "pr"]) {
Expand Down

0 comments on commit 8b1120e

Please sign in to comment.