Skip to content

Commit e46ff3b

Browse files
committed
ci(debug): logging the context
1 parent 0b23e82 commit e46ff3b

File tree

2 files changed

+1
-4
lines changed

2 files changed

+1
-4
lines changed

.github/workflows/actions-scripts-tests.yml

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,6 @@
11
name: Test Action Scripts
22

33
on:
4-
push:
5-
paths:
6-
- 'actions_scripts/**' # Trigger only when files in this folder are modified
74
pull_request:
85
paths:
96
- 'actions_scripts/**' # Run on PRs affecting the actions_scripts folder

actions_scripts/tests_report_on_pr_comment.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ import { ciLocalRun, getRepoOwner } from "./helpers.js";
66
*/
77
export default async (github, context, steps) => {
88
const isLocalRun = ciLocalRun(context);
9-
9+
console.log('CTX: ${JSON.stringify(context, null, 2)}');
1010
const marker = 'to show where the warning was created)';
1111
const output = steps.run_tests.outputs.tests_report;
1212
const sanitized = output.split(marker);

0 commit comments

Comments
 (0)