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 b653cd8 commit fb6d2d2Copy full SHA for fb6d2d2
.github/workflows/release.yml
@@ -7,7 +7,11 @@ on:
7
description: 'The type of version to release (alpha | beta | release)'
8
default: 'beta'
9
required: true
10
- type: string
+ type: choice
11
+ options:
12
+ - "alpha"
13
+ - "beta"
14
+ - "release"
15
16
permissions:
17
contents: write
gradle/scripts/spotless.gradle
@@ -8,7 +8,7 @@ spotless {
target '.gitignore'
trimTrailingWhitespace()
- indentWithSpaces(4)
+ leadingTabsToSpaces(4)
endWithNewline()
}
java {
0 commit comments