瀏覽代碼

actions: android: Prevent resolving tag commit to PR link

t895 2 年之前
父節點
當前提交
3b314a68a1
共有 1 個文件被更改,包括 2 次插入2 次删除
  1. 2 2
      .github/workflows/android-merge.js

+ 2 - 2
.github/workflows/android-merge.js

@@ -90,8 +90,8 @@ async function tagAndPush(github, owner, repo, execa, commit=false) {
     console.log(`New tag: ${newTag}`);
     if (commit) {
         let channelName = channel[0].toUpperCase() + channel.slice(1);
-        console.info(`Committing pending commit as ${channelName} #${tagNumber + 1}`);
-        await execa("git", ['commit', '-m', `${channelName} #${tagNumber + 1}`]);
+        console.info(`Committing pending commit as ${channelName} ${tagNumber + 1}`);
+        await execa("git", ['commit', '-m', `${channelName} ${tagNumber + 1}`]);
     }
     console.info('Pushing tags to GitHub ...');
     await execa("git", ['tag', newTag]);