Skip to content

Commit

Permalink
Sync labels
Browse files Browse the repository at this point in the history
  • Loading branch information
timotheeguerin committed May 11, 2024
1 parent 42fee05 commit c89ed8e
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion eng/common/scripts/sync-labels.ts
Original file line number Diff line number Diff line change
@@ -1,9 +1,11 @@
import { Octokit } from "@octokit/rest";
import { readFile } from "fs/promises";
import { dirname, resolve } from "path";
import { fileURLToPath } from "url";
import { inspect, parseArgs } from "util";
import { parse } from "yaml";

const labelFile = "../labels.yaml";
const labelFile = resolve(dirname(fileURLToPath(import.meta.url)), "../labels.yaml");

const repo = {
owner: "microsoft",
Expand Down

0 comments on commit c89ed8e

Please sign in to comment.