mirror of
https://github.com/marocchino/sticky-pull-request-comment.git
synced 2025-12-14 12:31:14 +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 github from "@actions/github"
|
||||
import {
|
||||
findPreviousComment,
|
||||
createComment,
|
||||
updateComment,
|
||||
deleteComment
|
||||
} from "./comment"
|
||||
import {
|
||||
pullRequestNumber,
|
||||
repo,
|
||||
body,
|
||||
header,
|
||||
append,
|
||||
recreate,
|
||||
body,
|
||||
deleteOldComment,
|
||||
githubToken
|
||||
githubToken,
|
||||
header,
|
||||
pullRequestNumber,
|
||||
recreate,
|
||||
repo
|
||||
} from "./config"
|
||||
import {
|
||||
createComment,
|
||||
deleteComment,
|
||||
findPreviousComment,
|
||||
updateComment
|
||||
} from "./comment"
|
||||
|
||||
async function run(): Promise<undefined> {
|
||||
if (isNaN(pullRequestNumber) || pullRequestNumber < 1) {
|
||||
|
|
|
|||
Loading…
Reference in a new issue