From c6128ef902e267aa5280cdbf15300ccd2ef3bb1d Mon Sep 17 00:00:00 2001 From: Luke Walton Date: Fri, 18 Oct 2024 16:48:35 +0100 Subject: [PATCH] ci: Change auto build PR title from 'feat' to chore so that small changes that requre a build do not trigger a major or minor update, but a patch' (#43) Co-authored-by: github-actions --- .github/workflows/build.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 8e657ee8..3613315a 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -57,9 +57,9 @@ jobs: id: title run: | if [ ${{github.ref_name=='main'}} ]; then - TITLE='feat: Icon updates ${{ steps.date.outputs.date }}' + TITLE='chore: Icon updates ${{ steps.date.outputs.date }}' else - TITLE='feat: Icon updates ${{ steps.date.outputs.date }}(${{github.ref_name}})' + TITLE='chore: Icon updates ${{ steps.date.outputs.date }}(${{github.ref_name}})' fi echo "TITLE=$TITLE" >> $GITHUB_OUTPUT - name: Push