Skip to content

Commit

Permalink
ci: Change auto build PR title from 'feat' to chore so that small cha…
Browse files Browse the repository at this point in the history
…nges that requre a build do not trigger a major or minor update, but a patch' (#43)

Co-authored-by: github-actions <[email protected]>
  • Loading branch information
thelukewalton and github-actions authored Oct 18, 2024
1 parent e9e4469 commit c6128ef
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit c6128ef

Please sign in to comment.