Skip to content
Open
Show file tree
Hide file tree
Changes from 10 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
28 changes: 15 additions & 13 deletions .craft.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,17 +6,19 @@ 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
17 changes: 17 additions & 0 deletions .github/workflows/changelog-preview.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
name: Changelog Preview
on:
pull_request:
types:
- opened
- synchronize
- reopened
- edited
- labeled
permissions:
contents: write
pull-requests: write

jobs:
changelog-preview:
uses: getsentry/craft/.github/workflows/changelog-preview.yml@v2
secrets: inherit
2 changes: 1 addition & 1 deletion .github/workflows/changelog.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ jobs:
name: changelog
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v5.0.0
- uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5
- uses: actions/github-script@ed597411d8f924073f98dfc5c65a23a2325f34cd
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ jobs:
lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@ff7abcd0c3c05ccf6adc123a8cd1fd4fb30fb493 # v5.0.0
- uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0
with:
fetch-depth: 0

Expand Down Expand Up @@ -78,7 +78,7 @@ jobs:
test-vroom:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@ff7abcd0c3c05ccf6adc123a8cd1fd4fb30fb493 # v5.0.0
- uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0
with:
fetch-depth: 0
- uses: actions/setup-go@v6
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/codeql.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ jobs:

steps:
- name: Checkout repository
uses: actions/checkout@v5.0.0
uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5

# Initializes the CodeQL tools for scanning.
- name: Initialize CodeQL
Expand Down
12 changes: 8 additions & 4 deletions .github/workflows/image.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,10 @@ on:
- main
- release/**

permissions:
contents: write
pull-requests: write

This comment was marked as outdated.

jobs:
build-image:
runs-on: ${{ matrix.os }}
Expand All @@ -19,7 +23,7 @@ jobs:
if: github.repository_owner == 'getsentry'
name: build-${{ matrix.platform }}
steps:
- uses: actions/checkout@ff7abcd0c3c05ccf6adc123a8cd1fd4fb30fb493 # v5.0.0
- uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0

- name: Set up Docker Buildx
uses: docker/setup-buildx-action@e468171a9de216ec08956ac3ada2f0791b6bd435 # v3.11.1
Expand Down Expand Up @@ -54,7 +58,7 @@ jobs:
- build-image
if: ${{ github.event_name != 'pull_request' }}
steps:
- uses: actions/checkout@ff7abcd0c3c05ccf6adc123a8cd1fd4fb30fb493 # v5.0.0
- uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0
- run: docker login --username '${{ github.actor }}' --password-stdin ghcr.io <<< "$GHCR_TOKEN"
env:
GHCR_TOKEN: ${{ secrets.GITHUB_TOKEN }}
Expand Down Expand Up @@ -106,7 +110,7 @@ jobs:
needs:
- assemble-image
steps:
- uses: actions/checkout@ff7abcd0c3c05ccf6adc123a8cd1fd4fb30fb493 # v5.0.0
- uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0
- name: Push built docker image
shell: bash
run: |
Expand Down Expand Up @@ -149,7 +153,7 @@ jobs:
contents: read
id-token: write
steps:
- uses: actions/checkout@ff7abcd0c3c05ccf6adc123a8cd1fd4fb30fb493 # v4.2.2
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2

- name: Build and push image to single-region registry
uses: getsentry/action-build-and-push-images@b172ab61a5f7eabd58bd42ce231b517e79947c01
Expand Down
4 changes: 4 additions & 0 deletions .github/workflows/release-ghcr-version-tag.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,10 @@ on:
release:
types: [prereleased, released]

permissions:
contents: write
pull-requests: write

jobs:
release-ghcr-version-tag:
runs-on: ubuntu-latest
Expand Down
50 changes: 24 additions & 26 deletions .github/workflows/release.yaml
Original file line number Diff line number Diff line change
@@ -1,40 +1,38 @@
name: release

on:
workflow_dispatch:
inputs:
version:
description: Version to release (optional)
description: Version to release (or "auto")
required: false
force:
description: Force a release even when there are release-blockers (optional)
description: Force a release even when there are release-blockers
required: false

schedule:
# We want the release to be at 9-10am Pacific Time
# We also want it to be 1 hour before the on-prem release
- cron: "0 17 15 * *"
- cron: "0 17 15 * *"
permissions:
contents: write
pull-requests: write

jobs:
release:
runs-on: ubuntu-latest
name: "Release a new vroom version"
name: Release a new version
steps:
- name: Get auth token
id: token
uses: actions/create-github-app-token@67018539274d69449ef7c02e8e71183d1719ab42 # v2.1.4
with:
app-id: ${{ vars.SENTRY_RELEASE_BOT_CLIENT_ID }}
private-key: ${{ secrets.SENTRY_RELEASE_BOT_PRIVATE_KEY }}
- uses: actions/checkout@v5.0.0
with:
token: ${{ steps.token.outputs.token }}
fetch-depth: 0
- name: Prepare release
uses: getsentry/action-prepare-release@v1
env:
GITHUB_TOKEN: ${{ steps.token.outputs.token }}
with:
version: ${{ github.event.inputs.version }}
force: ${{ github.event.inputs.force }}
calver: true
- name: Get auth token
id: token
uses: actions/create-github-app-token@d72941d797fd3113feb6b93fd0dec494b13a2547 # v1
with:
app-id: ${{ vars.SENTRY_RELEASE_BOT_CLIENT_ID }}
private-key: ${{ secrets.SENTRY_RELEASE_BOT_PRIVATE_KEY }}
- uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5
with:
token: ${{ steps.token.outputs.token }}
fetch-depth: 0
- name: Prepare release
uses: getsentry/craft@1c58bfd57bfd6a967b6f3fc92bead2c42ee698ce
env:
GITHUB_TOKEN: ${{ steps.token.outputs.token }}
with:
version: ${{ inputs.version }}
force: ${{ inputs.force }}
4 changes: 2 additions & 2 deletions .github/workflows/validate-pipelines.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ jobs:
outputs:
gocd: ${{ steps.changes.outputs.gocd }}
steps:
- uses: actions/checkout@v5.0.0
- uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5
- name: Check for relevant file changes
uses: getsentry/paths-filter@4512585405083f25c027a35db413c2b3b9006d50 # v2.11.1
id: changes
Expand All @@ -39,7 +39,7 @@ jobs:
id-token: "write"

steps:
- uses: actions/checkout@v5.0.0
- uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5
- id: 'auth'
uses: google-github-actions/auth@v3
with:
Expand Down
Loading