diff --git a/.github/workflows/image-build.yaml b/.github/workflows/image-build.yaml index 261d01674..1930495d6 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 41afa19e6..f200e8892 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