File tree Expand file tree Collapse file tree 1 file changed +3
-0
lines changed
Expand file tree Collapse file tree 1 file changed +3
-0
lines changed Original file line number Diff line number Diff line change 11const { getFlavorConfig, extractPRFlavor } = require ( './dangerfile-utils.js' ) ;
2+ const fs = require ( 'fs' ) ;
23
34const headRepoName = danger . github . pr . head . repo . git_url ;
45const baseRepoName = danger . github . pr . base . repo . git_url ;
@@ -191,6 +192,8 @@ async function CheckFromExternalChecks() {
191192 // Priority: EXTRA_DANGERFILE (absolute path) -> EXTRA_DANGERFILE_INPUT (relative path)
192193 const customPath = process . env . EXTRA_DANGERFILE || process . env . EXTRA_DANGERFILE_INPUT ;
193194 console . log ( `::debug:: Checking from external checks: ${ customPath } ` ) ;
195+ warn ( `::debug:: Current directory contents: ${ fs . readdirSync ( './' ) . join ( ', ' ) } ` ) ;
196+ warn ( `::debug:: Workspace directory contents: ${ fs . readdirSync ( '/github/workspace' ) . join ( ', ' ) } ` ) ;
194197 if ( customPath ) {
195198 try {
196199
You can’t perform that action at this time.
0 commit comments