Skip to content
Open
Show file tree
Hide file tree
Changes from 3 commits
Commits
Show all changes
22 commits
Select commit Hold shift + click to select a range
1736a75
ci(release): Switch from action-prepare-release to Craft
BYK Jan 9, 2026
2af3714
ci(release): Restore GitHub App token authentication
BYK Jan 9, 2026
c6c86bb
ci(release): Restore GitHub App token authentication
BYK Jan 9, 2026
e876603
fix: Pin actions to SHA and add permissions blocks
BYK Jan 10, 2026
3720f92
fix: Add calver: true configuration for CalVer releases
BYK Jan 10, 2026
38dd030
fix: Use correct action version SHAs (restore original versions)
BYK Jan 10, 2026
4dc3375
fix: Use correct action version SHAs (restore original versions)
BYK Jan 10, 2026
bc1ec1a
fix: Clean up action version comments
BYK Jan 12, 2026
32733fe
Update Craft SHA to 1c58bfd57bfd6a967b6f3fc92bead2c42ee698ce
BYK Jan 13, 2026
630e289
Update Craft SHA to 1c58bfd57bfd6a967b6f3fc92bead2c42ee698ce
BYK Jan 13, 2026
60fdab7
Remove changelog-preview workflow per review feedback
BYK Jan 13, 2026
d13a73d
Add explicit permissions block to build_binary.yml
BYK Jan 13, 2026
904e96d
Add explicit permissions block to build_library.yml
BYK Jan 13, 2026
f1b80cd
Add explicit permissions block to ci.yml
BYK Jan 13, 2026
adbad65
Add explicit permissions block to enforce-license-compliance.yml
BYK Jan 13, 2026
90df28a
Revert permissions changes to build_binary.yml
BYK Jan 13, 2026
522251b
Revert permissions changes to build_library.yml
BYK Jan 13, 2026
364cb0b
Revert permissions changes to ci.yml
BYK Jan 13, 2026
ae8fa20
Revert permissions changes to enforce-license-compliance.yml
BYK Jan 13, 2026
f866211
fix: revert extraneous changes to non-release workflow files
BYK Jan 13, 2026
c47299a
build(craft): Fix release workflows and config
BYK Jan 14, 2026
1b3f60d
build(craft): Update Craft action to c6e2f04
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
13 changes: 13 additions & 0 deletions .github/workflows/changelog-preview.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
name: Changelog Preview
on:
pull_request:
types:
- opened
- synchronize
- reopened
- edited
- labeled
jobs:
changelog-preview:
uses: getsentry/craft/.github/workflows/changelog-preview.yml@v2
secrets: inherit
Comment thread
cursor[bot] marked this conversation as resolved.
Outdated
51 changes: 21 additions & 30 deletions .github/workflows/release_binary.yml
Original file line number Diff line number Diff line change
@@ -1,43 +1,34 @@
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 * *"
jobs:
release:
runs-on: ubuntu-latest
name: "Release a new Relay version"

name: Release a new version
steps:
- name: Get auth token
id: token
uses: actions/create-github-app-token@29824e69f54612133e76f7eaac726eef6c875baf # v2.2.1
with:
app-id: ${{ vars.SENTRY_RELEASE_BOT_CLIENT_ID }}
private-key: ${{ secrets.SENTRY_RELEASE_BOT_PRIVATE_KEY }}

- uses: actions/checkout@v6.0.1
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@v1
with:
app-id: ${{ vars.SENTRY_RELEASE_BOT_CLIENT_ID }}
private-key: ${{ secrets.SENTRY_RELEASE_BOT_PRIVATE_KEY }}
- uses: actions/checkout@v4
with:
token: ${{ steps.token.outputs.token }}
fetch-depth: 0
- name: Prepare release
uses: getsentry/craft@v2
env:
GITHUB_TOKEN: ${{ steps.token.outputs.token }}
with:
version: ${{ inputs.version }}
force: ${{ inputs.force }}
Comment thread
cursor[bot] marked this conversation as resolved.
Outdated
49 changes: 22 additions & 27 deletions .github/workflows/release_library.yml
Original file line number Diff line number Diff line change
@@ -1,38 +1,33 @@
name: Release Library

on:
workflow_dispatch:
inputs:
version:
description: Version to release
required: true
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

jobs:
release:
runs-on: ubuntu-latest
name: "Release a new librelay version"

name: Release a new version
steps:
- name: Get auth token
id: token
uses: actions/create-github-app-token@29824e69f54612133e76f7eaac726eef6c875baf # v2.2.1
with:
app-id: ${{ vars.SENTRY_RELEASE_BOT_CLIENT_ID }}
private-key: ${{ secrets.SENTRY_RELEASE_BOT_PRIVATE_KEY }}

- uses: actions/checkout@v6.0.1
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 }}
path: py
- name: Get auth token
id: token
uses: actions/create-github-app-token@v1
with:
app-id: ${{ vars.SENTRY_RELEASE_BOT_CLIENT_ID }}
private-key: ${{ secrets.SENTRY_RELEASE_BOT_PRIVATE_KEY }}
- uses: actions/checkout@v4
with:
token: ${{ steps.token.outputs.token }}
fetch-depth: 0
- name: Prepare release
uses: getsentry/craft@v2
env:
GITHUB_TOKEN: ${{ steps.token.outputs.token }}
with:
version: ${{ inputs.version }}
force: ${{ inputs.force }}
path: py
Loading