Skip to content

Commit 520ae44

Browse files
committed
fix: update cron schedule for Docker publish workflow and adjust documentation commit parser
1 parent 79835f9 commit 520ae44

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

.github/workflows/docker-publish.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ on:
99
push:
1010
branches: [ main ]
1111
schedule:
12-
- cron: '0 12 1-7 1,7 4' # First Thursday of January and July at 12:00 UTC
12+
- cron: '0 12 5 1,6 *' # 5th day of month, 2 times a year (Jan, Jun) at 12:00 UTC
1313
workflow_dispatch:
1414

1515
jobs:

cliff.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@ commit_preprocessors = [
5858
commit_parsers = [
5959
{ message = "^feat", group = "<!-- 0 -->🚀 Features" },
6060
{ message = "^fix", group = "<!-- 1 -->🐛 Bug Fixes" },
61-
{ message = "^doc", group = "<!-- 3 -->📚 Documentation" },
61+
{ message = "^docs?", group = "<!-- 3 -->📚 Documentation" },
6262
{ message = "^perf", group = "<!-- 4 -->⚡ Performance" },
6363
{ message = "^refactor", group = "<!-- 2 -->🚜 Refactor" },
6464
{ message = "^style", group = "<!-- 5 -->🎨 Styling" },

0 commit comments

Comments
 (0)