Skip to content

Commit

Permalink
fix: change owner
Browse files Browse the repository at this point in the history
  • Loading branch information
0x4007 committed May 24, 2024
1 parent 75f308d commit dcfcf95
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions build/mirror.ts
Original file line number Diff line number Diff line change
@@ -1,14 +1,14 @@
import { Octokit } from "@octokit/rest";
import fetch from "node-fetch";
import * as dotenv from "dotenv";
import fetch from "node-fetch";
dotenv.config();

const GITHUB_TOKEN = process.env.GITHUB_TOKEN;
if (!GITHUB_TOKEN) {
throw new Error("GITHUB_TOKEN is required");
}

const GITHUB_REPO_OWNER = "0x4007";
const GITHUB_REPO_OWNER = "powerhouse-inc";
const GITHUB_REPO_NAME = "powerhouse-mirror";

const octokit = new Octokit({ auth: GITHUB_TOKEN });
Expand Down

0 comments on commit dcfcf95

Please sign in to comment.