From 9967bee0bad56831ed79cfe8f1b632102d52f304 Mon Sep 17 00:00:00 2001 From: Michael Waddell Date: Wed, 9 Feb 2022 13:45:29 -0600 Subject: [PATCH] fixing comment style --- src/dependabot/update_metadata.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/dependabot/update_metadata.ts b/src/dependabot/update_metadata.ts index 756a4c14..2533bc7b 100644 --- a/src/dependabot/update_metadata.ts +++ b/src/dependabot/update_metadata.ts @@ -15,7 +15,7 @@ export function parse (commitMessage: string, branchName: string, mainBranch: st if (yamlFragment?.groups && branchName.startsWith('dependabot')) { const data = YAML.parse(yamlFragment.groups.dependencies) - # Since we are on the `dependabot` branch (9 letters), the 10th letter in the branch name is the delimiter + // Since we are on the `dependabot` branch (9 letters), the 10th letter in the branch name is the delimiter const delim = branchName[10] const chunks = branchName.split(delim) const dirname = chunks.slice(2, -1).join(delim) || '/'