File tree 2 files changed +1
-4
lines changed
.github/actions/check-codescanning-config
2 files changed +1
-4
lines changed Original file line number Diff line number Diff line change 63
63
shell : bash
64
64
env :
65
65
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"
69
67
- name : Clean up
70
68
shell : bash
71
69
if : always()
Original file line number Diff line number Diff line change @@ -7,7 +7,6 @@ import * as assert from 'assert'
7
7
const actualConfig = loadActualConfig ( )
8
8
9
9
const rawExpectedConfig = process . argv [ 3 ] . trim ( )
10
- core . info ( "rawExpectedConfig: " + rawExpectedConfig )
11
10
if ( ! rawExpectedConfig ) {
12
11
core . setFailed ( 'No expected configuration provided' )
13
12
} else {
You can’t perform that action at this time.
0 commit comments