Skip to content
Merged
Show file tree
Hide file tree
Changes from 2 commits
Commits
Show all changes
23 commits
Select commit Hold shift + click to select a range
dd14da1
ci(release): Switch from action-prepare-release to Craft
BYK Jan 9, 2026
ecdd181
ci(release): Restore GitHub App token authentication
BYK Jan 9, 2026
ebb437d
fix: Pin actions to SHA and add permissions blocks
BYK Jan 10, 2026
2c748c6
fix: Use correct action version SHAs (restore original versions)
BYK Jan 10, 2026
c38e477
fix: Clean up action version comments
BYK Jan 12, 2026
089968e
Update Craft SHA to 1c58bfd57bfd6a967b6f3fc92bead2c42ee698ce
BYK Jan 13, 2026
18d871a
Add explicit permissions block to agp-matrix.yml
BYK Jan 13, 2026
b718642
Add explicit permissions block to enforce-license-compliance.yml
BYK Jan 13, 2026
f9ae0d4
Add explicit permissions block to generate-javadocs.yml
BYK Jan 13, 2026
9bd2e27
Add explicit permissions block to integration-tests-benchmarks.yml
BYK Jan 13, 2026
8df8f2c
Add explicit permissions block to integration-tests-ui-critical.yml
BYK Jan 13, 2026
613fab0
Add explicit permissions block to integration-tests-ui.yml
BYK Jan 13, 2026
0955cf8
Revert permissions changes to agp-matrix.yml
BYK Jan 13, 2026
10d2b90
Revert permissions changes to enforce-license-compliance.yml
BYK Jan 13, 2026
a7846ce
Revert permissions changes to generate-javadocs.yml
BYK Jan 13, 2026
d4ad5d4
Revert permissions changes to integration-tests-benchmarks.yml
BYK Jan 13, 2026
dedf975
Revert permissions changes to integration-tests-ui-critical.yml
BYK Jan 13, 2026
240710f
Revert permissions changes to integration-tests-ui.yml
BYK Jan 13, 2026
9889efc
fix: revert extraneous changes to non-release workflow files
BYK Jan 14, 2026
c20b091
fix: clean up release.yml formatting and version comments
BYK Jan 14, 2026
f230601
build(craft): Update Craft action to c6e2f04
BYK Jan 14, 2026
f85e220
chore: add unlabeled trigger to changelog-preview
BYK Jan 14, 2026
c720b6f
Merge branch 'main' into ci/migrate-to-craft-action
romtsn Jan 19, 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
49 changes: 23 additions & 26 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,37 +3,34 @@ on:
workflow_dispatch:
inputs:
version:
description: Version to release
required: true
description: Version to release (or "auto")
required: false
Comment thread
sentry[bot] marked this conversation as resolved.
force:
description: Force a release even when there are release-blockers (optional)
description: Force a release even when there are release-blockers
required: false
merge_target:
description: Target branch to merge into. Uses the default branch as a fallback (optional)
description: Target branch to merge into
required: false

jobs:
release:
runs-on: ubuntu-latest
name: "Release a new 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
with:
token: ${{ steps.token.outputs.token }}
# Needs to be set, otherwise git describe --tags will fail with: No names found, cannot describe anything
fetch-depth: 0
submodules: 'recursive'
- 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 }}
merge_target: ${{ github.event.inputs.merge_target }}
- name: Get auth token
id: token
uses: actions/create-github-app-token@v1
Comment thread
cursor[bot] marked this conversation as resolved.
Outdated
with:
app-id: ${{ vars.SENTRY_RELEASE_BOT_CLIENT_ID }}
private-key: ${{ secrets.SENTRY_RELEASE_BOT_PRIVATE_KEY }}
- uses: actions/checkout@v4
Comment thread
cursor[bot] marked this conversation as resolved.
Outdated
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 }}
merge_target: ${{ inputs.merge_target }}
Loading