We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 588a2cc commit ef53f46Copy full SHA for ef53f46
.github/actions/find/src/pluginManager.ts
@@ -67,6 +67,13 @@ export async function loadBuiltInPlugins() {
67
export async function loadCustomPlugins() {
68
core.info('Loading custom plugins')
69
const pluginsPath = path.join(process.cwd(), '.github/scanner-plugins/')
70
+ console.log('plugins path', pluginsPath);
71
+
72
+ const fileNames = fs.readdirSync(process.cwd())
73
+ fileNames.forEach((fn: string) => {
74
+ console.log('file in cwd:', fn)
75
+ });
76
77
78
// - currently, the plugin manager will abort loading
79
// all plugins if there's an error
0 commit comments