Skip to content

Commit eb5405b

Browse files
authored
Merge branch 'main' into wrslatz-simple-git-fix
2 parents f832f22 + 0adfa42 commit eb5405b

5 files changed

Lines changed: 13 additions & 65 deletions

File tree

.github/release-drafter.yml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,9 @@ template: |
88
See details of [all code changes](https://github.com/$OWNER/$REPOSITORY/compare/$PREVIOUS_TAG...v$RESOLVED_VERSION) since previous release
99
1010
categories:
11+
- title: '💥 Breaking Changes'
12+
labels:
13+
- 'breaking'
1114
- title: '🚀 Features'
1215
labels:
1316
- 'feature'

.github/workflows/release.yml

Lines changed: 7 additions & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -15,29 +15,18 @@ permissions:
1515
jobs:
1616
release:
1717
permissions:
18-
contents: write
19-
pull-requests: read
20-
uses: github-community-projects/ospo-reusable-workflows/.github/workflows/release.yaml@6f158f242fe68adb5a2698ef47e06dac07ac7e71
18+
contents: write # Create release and push tags
19+
pull-requests: read # Read PR labels for release-drafter
20+
packages: write # Push container image to ghcr.io
21+
id-token: write # Federate for artifact attestation
22+
attestations: write # Generate build provenance attestations
23+
discussions: write # Create release announcement discussion
24+
uses: github-community-projects/ospo-reusable-workflows/.github/workflows/release.yaml@e92cb6053ace495fe40a5f185988557afcdcecbc # v1.0.1
2125
with:
2226
publish: true
2327
release-config-name: release-drafter.yml
24-
secrets:
25-
github-token: ${{ secrets.GITHUB_TOKEN }}
26-
release_image:
27-
needs: release
28-
permissions:
29-
contents: read
30-
packages: write
31-
id-token: write
32-
attestations: write
33-
uses: github-community-projects/ospo-reusable-workflows/.github/workflows/release-image.yaml@6f158f242fe68adb5a2698ef47e06dac07ac7e71
34-
with:
3528
image-name: ${{ github.repository }}
36-
full-tag: ${{ needs.release.outputs.full-tag }}
37-
short-tag: ${{ needs.release.outputs.short-tag }}
3829
create-attestation: true
3930
secrets:
4031
github-token: ${{ secrets.GITHUB_TOKEN }}
41-
image-registry: ghcr.io
42-
image-registry-username: ${{ github.actor }}
4332
image-registry-password: ${{ secrets.GITHUB_TOKEN }}

package-lock.json

Lines changed: 0 additions & 44 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -71,7 +71,6 @@
7171
"prettier": "3.5.3",
7272
"typescript": "5.8.3",
7373
"typescript-eslint": "8.54.0",
74-
"vite-tsconfig-paths": "6.1.1",
7574
"vitest": "4.1.5"
7675
},
7776
"engines": {

vitest.config.ts

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,6 @@
11
import { defineConfig } from 'vitest/config'
2-
import tsconfigPaths from 'vite-tsconfig-paths'
32

43
export default defineConfig({
5-
plugins: [tsconfigPaths()],
64
test: {
75
environment: 'node',
86
include: [
@@ -35,4 +33,7 @@ export default defineConfig({
3533
tsconfig: './tsconfig.json',
3634
},
3735
},
36+
resolve: {
37+
tsconfigPaths: true,
38+
},
3839
})

0 commit comments

Comments
 (0)