From 22a502097dc6bb8201a48c013b0c65804a3f9025 Mon Sep 17 00:00:00 2001 From: Kostas Stamatakis Date: Fri, 13 Sep 2024 17:26:07 +0300 Subject: [PATCH] Add missing workflows in 8.x (#2526) add missing workflows in 8.x --- .github/workflows/arm-template-lint.yml | 1 + .github/workflows/ci-pull_request.yml | 2 ++ .github/workflows/ci.yml | 1 + .github/workflows/cloudformation-ci.yml | 18 ++++++++++-------- .github/workflows/eks-ci.yml | 1 + .github/workflows/packaging.yml | 1 + .github/workflows/unit-test.yml | 2 ++ 7 files changed, 18 insertions(+), 8 deletions(-) diff --git a/.github/workflows/arm-template-lint.yml b/.github/workflows/arm-template-lint.yml index d91de89b1f..864b227de1 100644 --- a/.github/workflows/arm-template-lint.yml +++ b/.github/workflows/arm-template-lint.yml @@ -7,6 +7,7 @@ on: push: branches: - main + - "8.x" paths: - "deploy/azure/*.json" diff --git a/.github/workflows/ci-pull_request.yml b/.github/workflows/ci-pull_request.yml index ca64546e25..a1cc73004c 100644 --- a/.github/workflows/ci-pull_request.yml +++ b/.github/workflows/ci-pull_request.yml @@ -5,11 +5,13 @@ on: branches: - main - "[0-9]+.[0-9]+" + - "8.x" types: [opened, synchronize, reopened] push: branches: - main - "[0-9]+.[0-9]+" + - "8.x" workflow_dispatch: concurrency: diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index e4c3431792..40568407ae 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -11,6 +11,7 @@ on: branches: - main - "[0-9]+.[0-9]+" + - "8.x" workflow_dispatch: concurrency: diff --git a/.github/workflows/cloudformation-ci.yml b/.github/workflows/cloudformation-ci.yml index 9296a75150..8904f5fe06 100644 --- a/.github/workflows/cloudformation-ci.yml +++ b/.github/workflows/cloudformation-ci.yml @@ -1,18 +1,20 @@ name: CloudFormation-CI on: - pull_request_target: - branches: - - main - - "[0-9]+.[0-9]+" - types: [opened, synchronize, reopened] - paths: - - deploy/cloudformation/*.yml - - .github/workflows/cloudformation-ci.yml + # pull_request_target: + # branches: + # - main + # - "[0-9]+.[0-9]+" + # - "8.x" + # types: [opened, synchronize, reopened] + # paths: + # - deploy/cloudformation/*.yml + # - .github/workflows/cloudformation-ci.yml push: branches: - main - "[0-9]+.[0-9]+" + - "8.x" paths: - deploy/cloudformation/*.yml - .github/workflows/cloudformation-ci.yml diff --git a/.github/workflows/eks-ci.yml b/.github/workflows/eks-ci.yml index f65822b273..f5f9bbbcb4 100644 --- a/.github/workflows/eks-ci.yml +++ b/.github/workflows/eks-ci.yml @@ -14,6 +14,7 @@ on: branches: - main - "[0-9]+.[0-9]+" + - "8.x" env: AWS_ACCESS_KEY_ID: ${{ secrets.AWS_ACCESS_KEY_ID_TEST_ACC }} diff --git a/.github/workflows/packaging.yml b/.github/workflows/packaging.yml index ea081ef16b..650ac4bd25 100644 --- a/.github/workflows/packaging.yml +++ b/.github/workflows/packaging.yml @@ -5,6 +5,7 @@ on: branches: - main - "[0-9]+.[0-9]+" + - "8.x" types: [opened, synchronize, reopened] env: diff --git a/.github/workflows/unit-test.yml b/.github/workflows/unit-test.yml index d3549de7be..938d31940d 100644 --- a/.github/workflows/unit-test.yml +++ b/.github/workflows/unit-test.yml @@ -5,10 +5,12 @@ on: branches: - main - "[0-9]+.[0-9]+" + - "8.x" types: [opened, synchronize, reopened] push: branches: - main + - "8.x" env: K8S_MANIFEST_DIR: deploy