Skip to content

Commit 03f2eb0

Browse files
fix(ci): commit message conform to Conventional Commit (#37)
1 parent da3655e commit 03f2eb0

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

.github/workflows/release.yaml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -4,11 +4,11 @@ on:
44
push:
55
branches:
66
- main
7-
7+
88
permissions:
99
contents: write # we need this to be able to push tags
1010
pull-requests: read
11-
11+
1212
jobs:
1313
release_tag:
1414
name: Release version
@@ -38,7 +38,7 @@ jobs:
3838
echo "Skipping development version release: ${{ env.version }}"
3939
echo "SKIP=true" >> $GITHUB_ENV
4040
exit 0
41-
41+
4242
- name: Check if VERSION is already tagged
4343
id: check_tag
4444
run: |
@@ -67,7 +67,7 @@ jobs:
6767
6868
- name: Build Changelog
6969
id: github_release
70-
70+
7171
uses: mikepenz/release-changelog-builder-action@v5
7272
with:
7373
mode: "PR"
@@ -99,7 +99,7 @@ jobs:
9999
}
100100
env:
101101
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
102-
102+
103103
- name: Create GitHub release
104104
if: ${{ env.SKIP != 'true' }}
105105
uses: softprops/action-gh-release@v2
@@ -120,5 +120,5 @@ jobs:
120120
git config user.name "${{ env.AUTHOR_NAME }}"
121121
git config user.email "${{ env.AUTHOR_EMAIL }}"
122122
git add VERSION charts/metrics-operator/Chart.yaml charts/metrics-operator/values.yaml
123-
git commit -m "Update VERSION to ${{ env.version }}-dev"
123+
git commit -m "chore: update VERSION to ${{ env.version }}-dev"
124124
git push origin main

0 commit comments

Comments
 (0)