We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7567eab commit 3b348d9Copy full SHA for 3b348d9
2 files changed
.github/actions/check-codescanning-config/action.yml
@@ -62,7 +62,7 @@ runs:
62
- name: Check config
63
working-directory: ${{ github.action_path }}
64
shell: bash
65
- run: ts-node ./index.ts "$RUNNER_TEMP/user-config.yaml" "$EXPECTED_CONFIG_FILE_CONTENTS"
+ run: echo "$EXPECTED_CONFIG_FILE_CONTENTS"; ts-node ./index.ts "$RUNNER_TEMP/user-config.yaml" "$EXPECTED_CONFIG_FILE_CONTENTS"
66
- name: Clean up
67
68
if: always()
.github/actions/check-codescanning-config/index.ts
@@ -7,6 +7,7 @@ import * as assert from 'assert'
7
const actualConfig = loadActualConfig()
8
9
const rawExpectedConfig = process.argv[3].trim()
10
+core.info("rawExpectedConfig: " + rawExpectedConfig)
11
if (!rawExpectedConfig) {
12
core.setFailed('No expected configuration provided')
13
} else {
0 commit comments