From 5fc2bbe2aca5f9aa55c5801b29ca7482621d9ec3 Mon Sep 17 00:00:00 2001 From: barshaul Date: Mon, 8 Jul 2024 18:02:11 +0000 Subject: [PATCH] CI/CD: Fix repository owner --- .github/workflows/go.yml | 2 +- .github/workflows/java-cd.yml | 4 ++-- .github/workflows/java.yml | 2 +- .github/workflows/npm-cd.yml | 4 ++-- .github/workflows/ort.yml | 2 +- .github/workflows/pypi-cd.yml | 4 ++-- 6 files changed, 9 insertions(+), 9 deletions(-) diff --git a/.github/workflows/go.yml b/.github/workflows/go.yml index ebe02a12cc..7453c5c87a 100644 --- a/.github/workflows/go.yml +++ b/.github/workflows/go.yml @@ -106,7 +106,7 @@ jobs: run: make test build-amazonlinux-latest: - if: github.repository_owner == 'aws' + if: github.repository_owner == 'valkey-io' strategy: # Run all jobs fail-fast: false diff --git a/.github/workflows/java-cd.yml b/.github/workflows/java-cd.yml index 9ca4408ea4..933492f332 100644 --- a/.github/workflows/java-cd.yml +++ b/.github/workflows/java-cd.yml @@ -19,7 +19,7 @@ permissions: jobs: start-self-hosted-runner: - if: github.repository_owner == 'aws' + if: github.repository_owner == 'valkey-io' runs-on: ubuntu-latest environment: AWS_ACTIONS steps: @@ -37,7 +37,7 @@ jobs: create-binaries-to-publish: needs: start-self-hosted-runner - if: github.repository_owner == 'aws' + if: github.repository_owner == 'valkey-io' timeout-minutes: 35 strategy: # Run all jobs diff --git a/.github/workflows/java.yml b/.github/workflows/java.yml index 01b87a36c3..b505cafbfb 100644 --- a/.github/workflows/java.yml +++ b/.github/workflows/java.yml @@ -117,7 +117,7 @@ jobs: java/client/build/reports/spotbugs/** build-amazonlinux-latest: - if: github.repository_owner == 'aws' + if: github.repository_owner == 'valkey-io' strategy: # Run all jobs fail-fast: false diff --git a/.github/workflows/npm-cd.yml b/.github/workflows/npm-cd.yml index 0c477a50b3..b15829319b 100644 --- a/.github/workflows/npm-cd.yml +++ b/.github/workflows/npm-cd.yml @@ -29,7 +29,7 @@ permissions: jobs: start-self-hosted-runner: - if: github.repository_owner == 'aws' + if: github.repository_owner == 'valkey-io' runs-on: ubuntu-latest environment: AWS_ACTIONS steps: @@ -63,7 +63,7 @@ jobs: publish-binaries: needs: [start-self-hosted-runner, load-platform-matrix] - if: github.repository_owner == 'aws' + if: github.repository_owner == 'valkey-io' name: Publish packages to NPM runs-on: ${{ matrix.build.RUNNER }} container: diff --git a/.github/workflows/ort.yml b/.github/workflows/ort.yml index 014db6da9b..25c2812195 100644 --- a/.github/workflows/ort.yml +++ b/.github/workflows/ort.yml @@ -19,7 +19,7 @@ on: required: true jobs: run-ort: - if: github.repository_owner == 'aws' + if: github.repository_owner == 'valkey-io' name: Create attribution files runs-on: ubuntu-latest strategy: diff --git a/.github/workflows/pypi-cd.yml b/.github/workflows/pypi-cd.yml index 0b7474c4b6..87845335b6 100644 --- a/.github/workflows/pypi-cd.yml +++ b/.github/workflows/pypi-cd.yml @@ -45,7 +45,7 @@ jobs: start-self-hosted-runner: - if: github.repository_owner == 'aws' + if: github.repository_owner == 'valkey-io' runs-on: ubuntu-latest environment: AWS_ACTIONS steps: @@ -60,7 +60,7 @@ jobs: publish-binaries: needs: [start-self-hosted-runner, load-platform-matrix] - if: github.repository_owner == 'aws' + if: github.repository_owner == 'valkey-io' name: Publish packages to PyPi runs-on: ${{ matrix.build.RUNNER }} timeout-minutes: 25