We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 02c8587 commit 8d38285Copy full SHA for 8d38285
.github/workflows/incrementVersionAndCreatePR.cjs
@@ -13,6 +13,7 @@ module.exports = async ({ github, context, versionType }) => {
13
await execAsync(`npm version ${versionType}`);
14
const packageJson = require("../../package.json");
15
const version = packageJson.version;
16
+ console.log(`Incremented version to v${version}(${versionType})`);
17
const featureBranch = `chore-increment-verion-${version}-${versionType}-${context.runNumber}`;
18
return { featureBranch, version };
19
}
0 commit comments