diff --git a/src/index.jsx b/src/index.jsx index 6782a3c..d0ca9ae 100644 --- a/src/index.jsx +++ b/src/index.jsx @@ -27,7 +27,7 @@ const main = async () => { const maxDepth = core.getInput("max_depth") || 9 const customFileColors = JSON.parse(core.getInput("file_colors") || '{}'); const colorEncoding = core.getInput("color_encoding") || "type" - const commitMessage = core.getInput("commit_message") || "Repo visualizer: updated diagram" + const commitMessage = core.getInput("commit_message") || "Repo visualizer: update diagram" const excludedPathsString = core.getInput("excluded_paths") || "node_modules,bower_components,dist,out,build,eject,.next,.netlify,.yarn,.git,.vscode,package-lock.json,yarn.lock" const excludedPaths = excludedPathsString.split(",").map(str => str.trim())