Skip to content

Commit 9a3d0ca

Browse files
committed
Merge branch 'release/v1.18.7'
2 parents 7204964 + 4193489 commit 9a3d0ca

40 files changed

+1582
-686
lines changed

.chglog/config.yml

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,24 @@ options:
1717
fix: Fix
1818
# perf: Performance Improvements
1919
# refactor: Code Refactoring
20+
sort_by: Custom
21+
title_order:
22+
- Feature
23+
- Chore
24+
- UI
25+
- API
26+
- Libs
27+
- Docker
28+
- Security
29+
- Fix
30+
- Bugfix
31+
- Docs
32+
- Swagger
33+
- Build
34+
- Testing
35+
- Test
36+
- Tests
37+
- Pull Requests
2038
header:
2139
pattern: "^(\\w*)(?:\\(([\\w\\$\\.\\-\\*\\s]*)\\))?\\:\\s(.*)$"
2240
pattern_maps:

.github/workflows/build-docker-edge.yml

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,13 +29,16 @@ jobs:
2929
username: ${{ github.repository_owner }}
3030
password: ${{ github.token }}
3131

32+
- uses: benjlevesque/[email protected]
33+
id: short-sha
34+
3235
- name: Build and push
3336
uses: docker/build-push-action@v5
3437
with:
3538
context: .
3639
platforms: linux/386,linux/amd64,linux/arm64
3740
build-args: |
38-
"VERSION=edge-${{ github.sha }}"
41+
"VERSION=edge-${{ steps.short-sha.outputs.sha }}"
3942
push: true
4043
tags: |
4144
axllent/mailpit:edge

.github/workflows/tests.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ jobs:
2626
key: ${{ runner.os }}-go-${{ hashFiles('**/go.sum') }}
2727
restore-keys: |
2828
${{ runner.os }}-go-
29-
- run: go test -p 1 ./internal/storage ./server ./internal/tools ./internal/html2text -v
29+
- run: go test -p 1 ./internal/storage ./server ./server/pop3 ./internal/tools ./internal/html2text -v
3030
- run: go test -p 1 ./internal/storage ./internal/html2text -bench=.
3131

3232
# build the assets

0 commit comments

Comments
 (0)