-
-
Notifications
You must be signed in to change notification settings - Fork 4.6k
ci(release): Switch from action-prepare-release to Craft #106005
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
base: master
Are you sure you want to change the base?
Changes from all commits
cb1f57a
b163338
4f79d78
05b5d16
6bf9975
ea875c0
5965c5c
852394c
93599c6
c711a58
50c8d71
3eb330e
8cf1450
3e1d88d
4d50c19
3a5f0da
692b7d4
e67d98e
ecd451c
aaf6cfe
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -13,3 +13,5 @@ artifactProvider: | |
| name: none | ||
| targets: | ||
| - name: github | ||
| versioning: | ||
| policy: calver | ||
| 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 | ||
|
Contributor
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Craft reusable workflow uses mutable tag instead of SHA (Bugbot Rules)Medium Severity The PR discussion explicitly states the team convention to "pin all actions to sha's in sentry." However, the |
||
| secrets: inherit | ||
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
YAML indentation error breaks workflow trigger configuration
High Severity
The
- unlabeledentry on line 10 has incorrect indentation. It's at 4 spaces (same level astypes:), but needs to be at 6 spaces to be part of thetypes:list. This creates invalid YAML since you cannot mix a mapping key with a sequence item at the same level. The workflow will either fail to parse or won't trigger onunlabeledevents, breaking the changelog preview functionality for that event type.