From 40da0321d4048377c1cbd8a82b4f5e82a7a6d92e Mon Sep 17 00:00:00 2001 From: github-actions Date: Fri, 18 Oct 2024 15:57:48 +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' --- .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