From bd4ce7eb36d7ab8c6cf50603aefaac01aaa08756 Mon Sep 17 00:00:00 2001 From: Scott J Dickerson Date: Thu, 14 Mar 2024 19:26:09 -0400 Subject: [PATCH] :seedling: [release-0.3] Backport github action changes Apply github actions changes to the release-0.3 branch: - #1759 - #1746 Signed-off-by: Scott J Dickerson --- .github/workflows/image-build.yaml | 7 ++++--- .github/workflows/pr-closed.yaml | 1 + 2 files changed, 5 insertions(+), 3 deletions(-) diff --git a/.github/workflows/image-build.yaml b/.github/workflows/image-build.yaml index 261d01674a..1930495d63 100644 --- a/.github/workflows/image-build.yaml +++ b/.github/workflows/image-build.yaml @@ -4,10 +4,10 @@ on: workflow_dispatch: push: branches: - - 'main' - - 'release-*' + - "main" + - "release-*" tags: - - 'v*' + - "v*" concurrency: group: build-${{ github.ref }} @@ -21,6 +21,7 @@ jobs: image_name: "tackle2-ui" containerfile: "./Dockerfile" architectures: '[ "amd64", "arm64", "ppc64le", "s390x" ]' + extra-args: "--ulimit nofile=4096:4096" secrets: registry_username: ${{ secrets.QUAY_PUBLISH_ROBOT }} registry_password: ${{ secrets.QUAY_PUBLISH_TOKEN }} diff --git a/.github/workflows/pr-closed.yaml b/.github/workflows/pr-closed.yaml index 41afa19e6c..f200e88927 100644 --- a/.github/workflows/pr-closed.yaml +++ b/.github/workflows/pr-closed.yaml @@ -13,4 +13,5 @@ jobs: pull-requests: write contents: write if: github.event.pull_request.merged == true + secrets: inherit uses: konveyor/release-tools/.github/workflows/cherry-pick.yml@main