From 08b9fafb526b70b15cfcfa7939fc2504244beb09 Mon Sep 17 00:00:00 2001 From: David May <49894298+wass3rw3rk@users.noreply.github.com> Date: Fri, 20 Sep 2024 10:25:55 -0500 Subject: [PATCH] chore: use proper title for PRs from auto increment (#329) Co-authored-by: Easton Crupper <65553218+ecrupper@users.noreply.github.com> --- .github/workflows/version_increment.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/version_increment.yml b/.github/workflows/version_increment.yml index cf24ce2..703e706 100644 --- a/.github/workflows/version_increment.yml +++ b/.github/workflows/version_increment.yml @@ -54,7 +54,7 @@ jobs: const pullRequest = await github.rest.pulls.create({ owner, repo, - title: `Bump minor version to ${process.env.NEW_VERSION_MINOR}`, + title: `chore: bump minor version to ${process.env.NEW_VERSION_MINOR}`, head: `bump-minor-version-to-${process.env.NEW_VERSION_MINOR}`, base: 'main', body: `This PR increments the VersionMinor value in version.go to ${process.env.NEW_VERSION_MINOR}.`,