Sfoglia il codice sorgente

fix label of comparing link

Yuki Takei 5 anni fa
parent
commit
a9ae4b4d76
1 ha cambiato i file con 1 aggiunte e 1 eliminazioni
  1. 1 1
      bin/github-actions/list-branches.js

+ 1 - 1
bin/github-actions/list-branches.js

@@ -69,7 +69,7 @@ function getGitHubCommitsUrl(branchName) {
 }
 
 function getGitHubComparingLink(branchName) {
-  const label = `master <- ${branchName}`;
+  const label = `master &lt;- ${branchName}`;
   const link = url.resolve(GITHUB_REPOS_URI, `compare/${branchName}`);
   return `<${link}|${label}>`;
 }