Reworked a bit of logging.
Lint / pre-commit Linting (push) Successful in 50s Details

This commit is contained in:
Philipp Horstenkamp 2023-11-26 20:13:10 +01:00
parent 7f5df4a59e
commit a312781dc7
Signed by: Philipp
GPG Key ID: DD53EAC36AFB61B4
1 changed files with 3 additions and 1 deletions

View File

@ -90,6 +90,7 @@ async function postCode() {
const files_to_push = await readFilesIntoDict(pattern, prefix);
core.info(`Trying to upload the following files to ${branch}:`);
Object.keys(files_to_push).forEach((key) => {
core.info(`Key: ${key}`);
});
@ -104,7 +105,8 @@ async function postCode() {
path: path,
};
core.info(`Trying to upload the following files to ${branch}:`);
core.info("login_arguments:");
core.info(JSON.stringify(login_arguments, null, 2));
Object.keys(login_arguments).forEach((key) => {
core.info(`Key: ${key}`);
});