Closed prasadtalasila closed 3 weeks ago
The runner has the default config file and package version hardcoded.
Check commander.ts
The default config filename is hardcoded in line-23 (as runner.yml) while the package version is hardcoded in line-7.
runner.yml
The config filename should be mentioned as constant at the top of commander.ts
commander.ts
const DEFAULT_CONFIG_FILENAME = 'runner.yaml'
and the package version should be updated to the latest version.
PR #1042 solves this problem
Describe the bug
The runner has the default config file and package version hardcoded.
To Reproduce
Check commander.ts
The default config filename is hardcoded in line-23 (as
runner.yml
) while the package version is hardcoded in line-7.Expected behavior
The config filename should be mentioned as constant at the top of
commander.ts
and the package version should be updated to the latest version.