File tree 2 files changed +20
-16
lines changed
2 files changed +20
-16
lines changed Original file line number Diff line number Diff line change @@ -152,7 +152,7 @@ ij_properties_spaces_around_key_value_delimiter = false
152
152
indent_size = 4
153
153
ij_yaml_keep_indents_on_empty_lines = false
154
154
ij_yaml_keep_line_breaks = true
155
- ij_yaml_space_before_colon = true
155
+ ij_yaml_space_before_colon = false
156
156
ij_yaml_spaces_within_braces = true
157
157
ij_yaml_spaces_within_brackets = true
158
158
charset = utf-8
Original file line number Diff line number Diff line change @@ -12,18 +12,22 @@ jobs:
12
12
runs-on : ubuntu-latest
13
13
14
14
steps :
15
- - uses : actions/checkout@v3
16
- - name : Set up JDK 17
17
- uses : actions/setup-java@v3
18
- with :
19
- java-version : ' 17'
20
- distribution : ' temurin'
21
- - name : Build with Gradle
22
- uses : gradle/gradle-build-action@67421db6bd0bf253fb4bd25b31ebb98943c375e1
23
- with :
24
- arguments : dockerTagsPush
25
- - name : Publish Test Report
26
- uses : mikepenz/action-junit-report@v3
27
- if : success() || failure() # always run even if the previous step fails
28
- with :
29
- report_paths : ' **/build/test-results/test/TEST-*.xml'
15
+ - uses : actions/checkout@v3
16
+ - name : Set up JDK 17
17
+ uses : actions/setup-java@v3
18
+ with :
19
+ java-version : ' 17'
20
+ distribution : ' temurin'
21
+ - name : Authenticate on Github
22
+ uses : actions/labeler@v4
23
+ with :
24
+ repo-token : ${{ secrets.GITHUB_TOKEN }}
25
+ - name : Build with Gradle
26
+ uses : gradle/gradle-build-action@67421db6bd0bf253fb4bd25b31ebb98943c375e1
27
+ with :
28
+ arguments : dockerTagsPush
29
+ - name : Publish Test Report
30
+ uses : mikepenz/action-junit-report@v3
31
+ if : success() || failure() # always run even if the previous step fails
32
+ with :
33
+ report_paths : ' **/build/test-results/test/TEST-*.xml'
You can’t perform that action at this time.
0 commit comments