We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 822b704 commit 1d713c8Copy full SHA for 1d713c8
.github/workflows/ci.yml
@@ -8,6 +8,8 @@ jobs:
8
runs-on: ubuntu-latest
9
steps:
10
- uses: actions/checkout@v4
11
+ with:
12
+ fetch-depth: 100
13
14
# Install Node
15
- uses: actions/setup-node@v4
automation/webpack.prod.ts
@@ -98,7 +98,11 @@ export default merge(common, {
98
SentryPlugin.sentryWebpackPlugin({
99
release: {
100
name: process.env.UI_VERSION!,
101
- setCommits: { auto: true }
+ setCommits: {
102
+ auto: true,
103
+ ignoreEmpty: true,
104
+ ignoreMissing: true
105
+ }
106
}
107
})
108
]
0 commit comments