Skip to content

Commit 1cb4a84

Browse files
committed
added ci authentication
1 parent 4be7012 commit 1cb4a84

File tree

2 files changed

+20
-16
lines changed

2 files changed

+20
-16
lines changed

.editorconfig

+1-1
Original file line numberDiff line numberDiff line change
@@ -152,7 +152,7 @@ ij_properties_spaces_around_key_value_delimiter = false
152152
indent_size = 4
153153
ij_yaml_keep_indents_on_empty_lines = false
154154
ij_yaml_keep_line_breaks = true
155-
ij_yaml_space_before_colon = true
155+
ij_yaml_space_before_colon = false
156156
ij_yaml_spaces_within_braces = true
157157
ij_yaml_spaces_within_brackets = true
158158
charset = utf-8

.github/workflows/ci.yml

+19-15
Original file line numberDiff line numberDiff line change
@@ -12,18 +12,22 @@ jobs:
1212
runs-on: ubuntu-latest
1313

1414
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'

0 commit comments

Comments
 (0)