From 2aa6d506ee3e273e52bf8cbe8d903446cd2a5b76 Mon Sep 17 00:00:00 2001 From: Miro Stauder Date: Tue, 5 Dec 2023 11:43:21 +0100 Subject: [PATCH] Create CI-3p-sqlalchemy.yml --- .github/workflows/CI-3p-sqlalchemy.yml | 30 ++++++++++++++++++++++++++ 1 file changed, 30 insertions(+) create mode 100644 .github/workflows/CI-3p-sqlalchemy.yml diff --git a/.github/workflows/CI-3p-sqlalchemy.yml b/.github/workflows/CI-3p-sqlalchemy.yml new file mode 100644 index 0000000000..9be2100a3b --- /dev/null +++ b/.github/workflows/CI-3p-sqlalchemy.yml @@ -0,0 +1,30 @@ +name: CI-3p-sqlalchemy + +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 }} + +jobs: + cache: + uses: sysown/proxysql/.github/workflows/ci-builds.yml@GH-Actions + secrets: inherit + + run: + needs: [ "cache" ] + uses: sysown/proxysql/.github/workflows/ci-3p-sqlalchemy.yml@GH-Actions + secrets: inherit +