From 73efc22908c67183d9ccb8f4702fa984d456e0ee Mon Sep 17 00:00:00 2001 From: Yuriy Ostapenko <2004891+yuriyostapenko@users.noreply.github.com> Date: Tue, 21 Jul 2026 11:36:20 +0200 Subject: [PATCH 1/2] Add checks permission to CI/CD workflow --- .github/workflows/ci-cd.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/ci-cd.yaml b/.github/workflows/ci-cd.yaml index c8f34c0..ae3c3a6 100644 --- a/.github/workflows/ci-cd.yaml +++ b/.github/workflows/ci-cd.yaml @@ -11,6 +11,7 @@ on: permissions: contents: write packages: write + checks: write jobs: build-and-publish: @@ -72,7 +73,6 @@ jobs: path: target/surefire-reports/junitreports/*.xml reporter: java-junit fail-on-error: false - only-summary: true - name: Publish to GitHub Packages if: github.event_name == 'push' From 38fd836acd677986ed3ea9f67ffbe45598f3e0b3 Mon Sep 17 00:00:00 2001 From: Yuriy Ostapenko <2004891+yuriyostapenko@users.noreply.github.com> Date: Tue, 21 Jul 2026 11:39:29 +0200 Subject: [PATCH 2/2] Update CI/CD workflow to disable actions summary Disable actions summary for test results. --- .github/workflows/ci-cd.yaml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/workflows/ci-cd.yaml b/.github/workflows/ci-cd.yaml index ae3c3a6..471d6d0 100644 --- a/.github/workflows/ci-cd.yaml +++ b/.github/workflows/ci-cd.yaml @@ -73,6 +73,7 @@ jobs: path: target/surefire-reports/junitreports/*.xml reporter: java-junit fail-on-error: false + use-actions-summary: false - name: Publish to GitHub Packages if: github.event_name == 'push'