Skip to content

Commit

Permalink
test run
Browse files Browse the repository at this point in the history
  • Loading branch information
SeriyBg committed Aug 8, 2023
1 parent 91b8eb8 commit c8c64e0
Show file tree
Hide file tree
Showing 2 changed files with 18 additions and 5 deletions.
11 changes: 9 additions & 2 deletions .github/workflows/aws-terraform-integration-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,13 +3,12 @@ name: aws-tests
on:
workflow_dispatch:
push:
branches:
- "CN-930-*"
pull_request_target:
types:
- labeled
branches:
- "master"
- "*.z"

env:
GAR_PROJECT_ID: hazelcast-33
Expand All @@ -25,6 +24,14 @@ jobs:
build:
name: AWS Tests
runs-on: ubuntu-latest
if: >-
github.repository_owner == 'hazelcast' &&
( github.event_name == 'workflow_dispatch' ||
(github.event_name == 'pull_request_target' &&
github.event.action == 'labeled' &&
github.event.label.name == 'run-discovery-tests'
)
)
outputs:
HZ_IMG: ${{ steps.get-hz-image-tag.outputs.HZ_IMG }}
CL_IMG: ${{ steps.get-cl-image-tag.outputs.CL_IMG }}
Expand Down
12 changes: 9 additions & 3 deletions .github/workflows/k8s-terraform-integration-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,14 +2,12 @@ name: aws-tests

on:
workflow_dispatch:
push:
branches:
- "CN-930-*"
pull_request_target:
types:
- labeled
branches:
- "master"
- "*.z"

env:
GAR_PROJECT_ID: hazelcast-33
Expand All @@ -25,6 +23,14 @@ jobs:
build:
name: Kubernetes Tests
runs-on: ubuntu-latest
if: >-
github.repository_owner == 'hazelcast' &&
( github.event_name == 'workflow_dispatch' ||
(github.event_name == 'pull_request_target' &&
github.event.action == 'labeled' &&
github.event.label.name == 'run-discovery-tests'
)
)
outputs:
HZ_IMG: ${{ steps.get-hz-image-tag.outputs.HZ_IMG }}
CL_IMG: ${{ steps.get-cl-image-tag.outputs.CL_IMG }}
Expand Down

0 comments on commit c8c64e0

Please sign in to comment.