Merge pull request #897 from elezar/fix-copy-prs

Fix detection of PRs
This commit is contained in:
Evan Lezar 2025-02-05 16:21:44 +01:00 committed by GitHub
commit cec3445318
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -41,7 +41,7 @@ jobs:
- centos7-x86_64 - centos7-x86_64
- centos8-ppc64le - centos8-ppc64le
ispr: ispr:
- ${{github.event_name == 'pull_request'}} - ${{ github.ref_name != 'main' && !startsWith( github.ref_name, 'release-' ) }}
exclude: exclude:
- ispr: true - ispr: true
target: ubuntu18.04-arm64 target: ubuntu18.04-arm64
@ -82,7 +82,7 @@ jobs:
- ubi8 - ubi8
- packaging - packaging
ispr: ispr:
- ${{github.event_name == 'pull_request'}} - ${{ github.ref_name != 'main' && !startsWith( github.ref_name, 'release-' ) }}
exclude: exclude:
- ispr: true - ispr: true
dist: ubi8 dist: ubi8
@ -95,9 +95,6 @@ jobs:
run: | run: |
echo "COMMIT_SHORT_SHA=${GITHUB_SHA:0:8}" >> $GITHUB_ENV echo "COMMIT_SHORT_SHA=${GITHUB_SHA:0:8}" >> $GITHUB_ENV
echo "LOWERCASE_REPO_OWNER=$(echo "${GITHUB_REPOSITORY_OWNER}" | awk '{print tolower($0)}')" >> $GITHUB_ENV echo "LOWERCASE_REPO_OWNER=$(echo "${GITHUB_REPOSITORY_OWNER}" | awk '{print tolower($0)}')" >> $GITHUB_ENV
REPO_FULL_NAME="${{ github.event.pull_request.head.repo.full_name }}"
echo "${REPO_FULL_NAME}"
echo "LABEL_IMAGE_SOURCE=https://github.com/${REPO_FULL_NAME}" >> $GITHUB_ENV
PUSH_ON_BUILD="false" PUSH_ON_BUILD="false"
BUILD_MULTI_ARCH_IMAGES="false" BUILD_MULTI_ARCH_IMAGES="false"