Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions .changeset/twelve-bags-train.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
---
"changed-modules-go": patch
---

fix: context logging
2 changes: 1 addition & 1 deletion actions/changed-modules-go/dist/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -36074,7 +36074,7 @@ async function run() {
core5.startGroup("Inputs and Context");
const context3 = getInvokeContext();
core5.info(
`Extracted Context: ${JSON.stringify({ context: context3, ...{ token: "<redacted>" } }, null, 2)}`
`Extracted Context: ${JSON.stringify({ ...context3, token: "<redacted>" }, null, 2)}`
);
const inputs = getInputs();
core5.info(`Extracted Inputs: ${JSON.stringify(inputs, null, 2)}`);
Expand Down
2 changes: 1 addition & 1 deletion actions/changed-modules-go/src/run.ts
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ export async function run(): Promise<void> {
core.startGroup("Inputs and Context");
const context = getInvokeContext();
core.info(
`Extracted Context: ${JSON.stringify({ context, ...{ token: "<redacted>" } }, null, 2)}`,
`Extracted Context: ${JSON.stringify({ ...context, token: "<redacted>" }, null, 2)}`,
);

const inputs = getInputs();
Expand Down
Loading