Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
23 commits
Select commit Hold shift + click to select a range
0f0cb3e
ci(release): Switch from action-prepare-release to Craft
BYK Jan 9, 2026
cd0b9c5
ci(release): Restore GitHub App token authentication
BYK Jan 9, 2026
3a3f5a7
fix: Pin actions to SHA and add permissions blocks
BYK Jan 10, 2026
513d88c
fix: Use correct action version SHAs (restore original versions)
BYK Jan 10, 2026
7aff20f
fix: Use correct action version SHAs (restore original versions)
BYK Jan 10, 2026
1aa54d2
fix: Clean up action version comments
BYK Jan 12, 2026
4195875
Update Craft SHA to 1c58bfd57bfd6a967b6f3fc92bead2c42ee698ce
BYK Jan 13, 2026
196d8ab
Add explicit permissions block to image.yaml
BYK Jan 13, 2026
9acf39c
Add explicit permissions block to release-ghcr-version-tag.yaml
BYK Jan 13, 2026
b6f71c7
Add explicit permissions block to release.yaml
BYK Jan 13, 2026
75f1a9c
Revert permissions changes to image.yaml
BYK Jan 13, 2026
48f7472
Revert permissions changes to release-ghcr-version-tag.yaml
BYK Jan 13, 2026
2d3e2bc
Revert permissions changes to release.yaml
BYK Jan 13, 2026
3d6ac31
fix: revert extraneous changes to non-release workflow files
BYK Jan 14, 2026
fcd3b86
build(craft): Fix release workflows and config
BYK Jan 14, 2026
3d405f7
build(craft): Update Craft action to c6e2f04
BYK Jan 14, 2026
3c3f252
chore: remove legacy changelog workflow
BYK Jan 14, 2026
3a287d6
chore: remove legacy changelog action file .gitignore
BYK Jan 14, 2026
5ed7b01
chore: remove legacy changelog action file README.md
BYK Jan 14, 2026
199027b
chore: remove legacy changelog action file index.js
BYK Jan 14, 2026
b8e9c8a
chore: remove legacy changelog action file package.json
BYK Jan 14, 2026
95b2134
chore: remove legacy changelog action file prettier.config.js
BYK Jan 14, 2026
eb2bd8e
chore: add unlabeled trigger to changelog-preview
BYK Jan 14, 2026
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
33 changes: 18 additions & 15 deletions .craft.yml
Original file line number Diff line number Diff line change
@@ -1,22 +1,25 @@
minVersion: 1.0.0
changelogPolicy: auto
minVersion: 2.18.0
artifactProvider:
name: none
statusProvider:
name: github
config:
contexts:
- 'build-amd64'
- 'build-arm64'
- 'assemble-image'
- build-amd64
- build-arm64
- assemble-image
targets:
- name: github
- id: release
name: docker
source: ghcr.io/getsentry/vroom
target: getsentry/vroom
- id: latest
name: docker
source: ghcr.io/getsentry/vroom
target: getsentry/vroom
targetFormat: '{{{target}}}:latest'
- name: github
- id: release
name: docker
source: ghcr.io/getsentry/vroom
target: getsentry/vroom
- id: latest
name: docker
source: ghcr.io/getsentry/vroom
target: getsentry/vroom
targetFormat: '{{{target}}}:latest'
versioning:
policy: calver
changelog:
policy: auto
2 changes: 0 additions & 2 deletions .github/actions/changelog/.gitignore

This file was deleted.

11 changes: 0 additions & 11 deletions .github/actions/changelog/README.md

This file was deleted.

96 changes: 0 additions & 96 deletions .github/actions/changelog/index.js

This file was deleted.

26 changes: 0 additions & 26 deletions .github/actions/changelog/package.json

This file was deleted.

12 changes: 0 additions & 12 deletions .github/actions/changelog/prettier.config.js

This file was deleted.

18 changes: 18 additions & 0 deletions .github/workflows/changelog-preview.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
name: Changelog Preview
on:
pull_request:
types:
- opened
- synchronize
- reopened
- edited
- labeled
- unlabeled
permissions:
contents: write
pull-requests: write

jobs:
changelog-preview:
uses: getsentry/craft/.github/workflows/changelog-preview.yml@v2
secrets: inherit
18 changes: 0 additions & 18 deletions .github/workflows/changelog.yaml

This file was deleted.

3 changes: 1 addition & 2 deletions .github/workflows/release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -31,10 +31,9 @@ jobs:
token: ${{ steps.token.outputs.token }}
fetch-depth: 0
- name: Prepare release
uses: getsentry/action-prepare-release@v1
uses: getsentry/craft@c6e2f04939b6ee67030588afbb5af76b127d8203
env:
GITHUB_TOKEN: ${{ steps.token.outputs.token }}
with:
version: ${{ github.event.inputs.version }}
force: ${{ github.event.inputs.force }}
calver: true
Loading