This is an automated email from the ASF dual-hosted git repository. pkarwasz pushed a commit to branch release/2.24.0 in repository https://gitbox.apache.org/repos/asf/logging-log4j2.git
commit 749b57754abb94ad1cfe1c6e79e9c87d9f2434da Author: Piotr P. Karwasz <[email protected]> AuthorDate: Mon Sep 2 21:10:39 2024 +0200 Fix typo in `build.yaml` --- .github/workflows/build.yaml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/build.yaml b/.github/workflows/build.yaml index 2a373113ee..a90183bcc8 100644 --- a/.github/workflows/build.yaml +++ b/.github/workflows/build.yaml @@ -32,14 +32,14 @@ jobs: if: github.actor != 'dependabot[bot]' uses: apache/logging-parent/.github/workflows/build-reusable.yaml@rel/11.2.0 secrets: - DV_ACCESS_TOKEN: ${{ ! startsWith(github.refname, 'release/') && secrets.GE_ACCESS_TOKEN }} + DV_ACCESS_TOKEN: ${{ ! startsWith(github.ref_name, 'release/') && secrets.GE_ACCESS_TOKEN }} with: java-version: | 8 17 site-enabled: true - reproducibility-check-enabled: false - develocity-enabled: ${{ ! startsWith(github.refname, 'release/') }} + reproducibility-check-enabled: ${{ startsWith(github.ref_name, 'release/') }} + develocity-enabled: ${{ ! startsWith(github.ref_name, 'release/') }} deploy-snapshot: needs: build
