diff --git a/.github/workflows/integration_block_storage.yml b/.github/workflows/integration_block_storage.yml index 371c6573e..3c344dbae 100644 --- a/.github/workflows/integration_block_storage.yml +++ b/.github/workflows/integration_block_storage.yml @@ -6,6 +6,9 @@ on: paths: - '**BlockStorage**' - '**Common**' + push: + branches: + - master jobs: tests: diff --git a/.github/workflows/integration_compute.yml b/.github/workflows/integration_compute.yml index 7d0723784..a331f2e3b 100644 --- a/.github/workflows/integration_compute.yml +++ b/.github/workflows/integration_compute.yml @@ -5,6 +5,9 @@ on: paths: - '**Compute**' - '**Common**' + push: + branches: + - master jobs: tests: diff --git a/.github/workflows/integration_identity.yml b/.github/workflows/integration_identity.yml index c7f2f8a92..97b81bc03 100644 --- a/.github/workflows/integration_identity.yml +++ b/.github/workflows/integration_identity.yml @@ -5,6 +5,9 @@ on: paths: - '**Identity**' - '**Common**' + push: + branches: + - master jobs: tests: diff --git a/.github/workflows/integration_images.yml b/.github/workflows/integration_images.yml index feddef035..e6278453f 100644 --- a/.github/workflows/integration_images.yml +++ b/.github/workflows/integration_images.yml @@ -5,6 +5,9 @@ on: paths: - '**Images**' - '**Common**' + push: + branches: + - master jobs: tests: diff --git a/.github/workflows/integration_networking.yml b/.github/workflows/integration_networking.yml index cc18661cf..eceef16fa 100644 --- a/.github/workflows/integration_networking.yml +++ b/.github/workflows/integration_networking.yml @@ -5,6 +5,9 @@ on: paths: - '**Networking**' - '**Common**' + push: + branches: + - master jobs: tests: diff --git a/.github/workflows/integration_object_storage.yml b/.github/workflows/integration_object_storage.yml index 252e4e372..1a76bcafe 100644 --- a/.github/workflows/integration_object_storage.yml +++ b/.github/workflows/integration_object_storage.yml @@ -5,6 +5,9 @@ on: paths: - '**ObjectStore**' - '**Common**' + push: + branches: + - master jobs: tests: diff --git a/.github/workflows/unit_tests.yml b/.github/workflows/unit_tests.yml index 2e22005c4..fefbc865d 100644 --- a/.github/workflows/unit_tests.yml +++ b/.github/workflows/unit_tests.yml @@ -1,6 +1,11 @@ name: Run Unit Tests on: + workflow_dispatch: pull_request: + push: + branches: + - master + jobs: tests: runs-on: ubuntu-22.04