🚨 import order

This commit is contained in:
marocchino 2021-09-01 02:50:18 +09:00
parent 1377338548
commit e9edc3c104
No known key found for this signature in database
GPG key ID: AFF521DBDB122570

View file

@ -1,21 +1,21 @@
import * as core from "@actions/core" import * as core from "@actions/core"
import * as github from "@actions/github" import * as github from "@actions/github"
import { import {
findPreviousComment,
createComment,
updateComment,
deleteComment
} from "./comment"
import {
pullRequestNumber,
repo,
body,
header,
append, append,
recreate, body,
deleteOldComment, deleteOldComment,
githubToken githubToken,
header,
pullRequestNumber,
recreate,
repo
} from "./config" } from "./config"
import {
createComment,
deleteComment,
findPreviousComment,
updateComment
} from "./comment"
async function run(): Promise<undefined> { async function run(): Promise<undefined> {
if (isNaN(pullRequestNumber) || pullRequestNumber < 1) { if (isNaN(pullRequestNumber) || pullRequestNumber < 1) {