Update import paths
String replacement from `@github/actions-` to `@actions/`
This commit is contained in:
committed by
Christopher Schleiden
parent
0ddee77479
commit
b82ddcdb42
@@ -1,5 +1,5 @@
|
||||
import {ActionReference, ActionMetadata, actionIdentifier} from "@github/actions-languageservice/action";
|
||||
import {error} from "@github/actions-languageservice/log";
|
||||
import {actionIdentifier, ActionMetadata, ActionReference} from "@actions/languageservice/action";
|
||||
import {error} from "@actions/languageservice/log";
|
||||
import {Octokit, RestEndpointMethodTypes} from "@octokit/rest";
|
||||
import {parse} from "yaml";
|
||||
import {TTLCache} from "./cache";
|
||||
|
||||
@@ -1,9 +1,9 @@
|
||||
import {error} from "@github/actions-languageservice/log";
|
||||
import {error} from "@actions/languageservice/log";
|
||||
import {Octokit} from "@octokit/rest";
|
||||
import {RepositoryContext} from "../initializationOptions";
|
||||
import {TTLCache} from "./cache";
|
||||
import {getUsername} from "./username";
|
||||
import {errorStatus} from "./error";
|
||||
import {getUsername} from "./username";
|
||||
|
||||
export type RepoPermission = "admin" | "write" | "read" | "none";
|
||||
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
import {log} from "@github/actions-languageservice/log";
|
||||
import {log} from "@actions/languageservice/log";
|
||||
|
||||
export async function timeOperation<T>(name: string, f: () => T): Promise<T> {
|
||||
const start = Date.now();
|
||||
|
||||
Reference in New Issue
Block a user