From 3b314a68a1b6cf5e7e6697d2efc0c0baa2c21755 Mon Sep 17 00:00:00 2001 From: t895 Date: Wed, 3 Jan 2024 17:01:31 -0500 Subject: actions: android: Prevent resolving tag commit to PR link --- .github/workflows/android-merge.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to '.github/workflows') diff --git a/.github/workflows/android-merge.js b/.github/workflows/android-merge.js index 0e1e5f1a1..44ab56e44 100644 --- a/.github/workflows/android-merge.js +++ b/.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]); -- cgit v1.2.3