Skip to content

Commit

Permalink
fix: esm-ify scripts/notify.js
Browse files Browse the repository at this point in the history
  • Loading branch information
gr2m committed Jul 9, 2023
1 parent a389ab1 commit a1f671e
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions scripts/notify.js
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
const { inspect } = require("util");
import { inspect } from "util";

const core = require("@actions/core");
const { App } = require("octokit");
import core from "@actions/core";
import { App } from "octokit";

main();

Expand Down

0 comments on commit a1f671e

Please sign in to comment.