Skip to content

Commit

Permalink
chore: renamed plugin-inputs.ts to plugin-input.ts
Browse files Browse the repository at this point in the history
  • Loading branch information
gentlementlegen committed Nov 25, 2024
1 parent b34e5c1 commit 932cef4
Show file tree
Hide file tree
Showing 4 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion src/action.ts
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import { createActionsPlugin } from "@ubiquity-os/plugin-sdk";
import { SupportedEvents } from "./types/context";
import { Env, envSchema } from "./types/env";
import { PluginSettings, pluginSettingsSchema } from "./types/plugin-inputs";
import { PluginSettings, pluginSettingsSchema } from "./types/plugin-input";
import { plugin } from "./plugin";
import { LogLevel } from "@ubiquity-os/ubiquity-os-logger";

Expand Down
2 changes: 1 addition & 1 deletion src/types/context.ts
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import { Context as PluginContext } from "@ubiquity-os/plugin-sdk";
import { Env } from "./env";
import { PluginSettings } from "./plugin-inputs";
import { PluginSettings } from "./plugin-input";

export type SupportedEvents = "push" | "issue_comment.created";

Expand Down
2 changes: 1 addition & 1 deletion src/types/index.ts
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
export * from "./context";
export * from "./env";
export * from "./plugin-inputs";
export * from "./plugin-input";
File renamed without changes.

0 comments on commit 932cef4

Please sign in to comment.