Skip to content

Commit

Permalink
diff syntax
Browse files Browse the repository at this point in the history
Signed-off-by: Shoham Elias <shohame@amazon.com>
  • Loading branch information
shohamazon committed Jul 9, 2024
1 parent 9d22c11 commit 148b514
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/java-cd.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ permissions:

jobs:
start-self-hosted-runner:
if: ${{ github.event.pull_request.head.repo.owner.login }} == 'valkey-io'
if: github.event.pull_request.head.repo.owner.login == 'valkey-io'
runs-on: ubuntu-latest
environment: AWS_ACTIONS
steps:
Expand All @@ -43,7 +43,7 @@ jobs:

create-binaries-to-publish:
needs: start-self-hosted-runner
if: ${{ github.event.pull_request.head.repo.owner.login }} == 'valkey-io'
if: github.event.pull_request.head.repo.owner.login == 'valkey-io'
timeout-minutes: 35
env:
JAVA_VERSION: '11'
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/npm-cd.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ permissions:

jobs:
start-self-hosted-runner:
if: ${{ github.event.pull_request.head.repo.owner.login }} == 'valkey-io'
if: github.event.pull_request.head.repo.owner.login == 'valkey-io'
runs-on: ubuntu-latest
environment: AWS_ACTIONS
steps:
Expand Down Expand Up @@ -64,7 +64,7 @@ jobs:
publish-binaries:
needs: [start-self-hosted-runner, load-platform-matrix]
if: ${{ github.event.pull_request.head.repo.owner.login }} == 'valkey-io'
if: github.event.pull_request.head.repo.owner.login == 'valkey-io'
name: Publish packages to NPM
runs-on: ${{ matrix.build.RUNNER }}
container:
Expand Down

0 comments on commit 148b514

Please sign in to comment.