mirror of
https://github.com/marocchino/sticky-pull-request-comment.git
synced 2025-12-15 12:46:30 +00:00
🚨 import order
This commit is contained in:
parent
1377338548
commit
e9edc3c104
1 changed files with 12 additions and 12 deletions
24
src/main.ts
24
src/main.ts
|
|
@ -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) {
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue