We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4d237c6 commit 9967beeCopy full SHA for 9967bee
1 file changed
src/dependabot/update_metadata.ts
@@ -15,7 +15,7 @@ export function parse (commitMessage: string, branchName: string, mainBranch: st
15
if (yamlFragment?.groups && branchName.startsWith('dependabot')) {
16
const data = YAML.parse(yamlFragment.groups.dependencies)
17
18
- # 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
19
const delim = branchName[10]
20
const chunks = branchName.split(delim)
21
const dirname = chunks.slice(2, -1).join(delim) || '/'
0 commit comments