From ca581f6e855b0af85bc7826bf203b6ab32c028dd Mon Sep 17 00:00:00 2001 From: Miro Stauder Date: Tue, 5 Sep 2023 09:36:57 +0200 Subject: [PATCH] Create CI-taptests-ssl --- .github/workflows/CI-taptests-ssl | 31 +++++++++++++++++++++++++++++++ 1 file changed, 31 insertions(+) create mode 100644 .github/workflows/CI-taptests-ssl diff --git a/.github/workflows/CI-taptests-ssl b/.github/workflows/CI-taptests-ssl new file mode 100644 index 000000000..9bb0eb428 --- /dev/null +++ b/.github/workflows/CI-taptests-ssl @@ -0,0 +1,31 @@ +name: CI-taptests + +on: + push: + branches: [ "v2.x" ] + paths-ignore: + - '.github/**' + - '**.md' + pull_request: + branches: [ "v2.x" ] + paths-ignore: + - '.github/**' + - '**.md' +# schedule: +# - cron: '15 13 * * 3' + workflow_dispatch: + +concurrency: + group: ${{ github.workflow }}-${{ github.ref_name }} + cancel-in-progress: false + +jobs: + cache: + uses: sysown/proxysql/.github/workflows/ci-builds.yml@GH-Actions + secrets: inherit + + run: + needs: [ "cache" ] + uses: sysown/proxysql/.github/workflows/ci-taptests.yml@GH-Actions + secrets: inherit +