Skip to content

Commit

Permalink
fix(debug): check missing env vars
Browse files Browse the repository at this point in the history
  • Loading branch information
EresDev committed Dec 20, 2024
1 parent 1d29293 commit fa79081
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions src/main.ts
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,8 @@ import { plugin } from "./plugin";
export async function run() {
const payload = github.context.payload.inputs;

console.log("payload.env", payload.env);

const env = Value.Decode(envSchema, payload.env);
const settings = Value.Decode(pluginSettingsSchema, Value.Default(pluginSettingsSchema, JSON.parse(payload.settings)));

Expand Down

0 comments on commit fa79081

Please sign in to comment.