Skip to content

Commit 628c1e6

Browse files
committed
Remove print debugging
1 parent e12eb8d commit 628c1e6

File tree

2 files changed

+1
-4
lines changed

2 files changed

+1
-4
lines changed

.github/actions/check-codescanning-config/action.yml

+1-3
Original file line numberDiff line numberDiff line change
@@ -63,9 +63,7 @@ runs:
6363
shell: bash
6464
env:
6565
EXPECTED_CONFIG_FILE_CONTENTS: '${{ inputs.expected-config-file-contents }}'
66-
run: |
67-
echo "EXPECTED_CONFIG_FILE_CONTENTS = $EXPECTED_CONFIG_FILE_CONTENTS"
68-
ts-node ./index.ts "$RUNNER_TEMP/user-config.yaml" "$EXPECTED_CONFIG_FILE_CONTENTS"
66+
run: ts-node ./index.ts "$RUNNER_TEMP/user-config.yaml" "$EXPECTED_CONFIG_FILE_CONTENTS"
6967
- name: Clean up
7068
shell: bash
7169
if: always()

.github/actions/check-codescanning-config/index.ts

-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,6 @@ import * as assert from 'assert'
77
const actualConfig = loadActualConfig()
88

99
const rawExpectedConfig = process.argv[3].trim()
10-
core.info("rawExpectedConfig: " + rawExpectedConfig)
1110
if (!rawExpectedConfig) {
1211
core.setFailed('No expected configuration provided')
1312
} else {

0 commit comments

Comments
 (0)