From 35041fd909ad2afee6aa121611c080bdb10fc654 Mon Sep 17 00:00:00 2001 From: Levi Schoen Date: Wed, 30 Nov 2022 15:52:03 -0800 Subject: [PATCH] add skeleton workflow for cd to internal testnet (#1413) * add skeleton workflow for cd to internal testnet * double quote workflow name to prevent splatting / expansion * allow for manually running internal testnet cd workflow --- .github/workflows/cd-internal-testnet.yml | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 .github/workflows/cd-internal-testnet.yml diff --git a/.github/workflows/cd-internal-testnet.yml b/.github/workflows/cd-internal-testnet.yml new file mode 100644 index 00000000..96577437 --- /dev/null +++ b/.github/workflows/cd-internal-testnet.yml @@ -0,0 +1,12 @@ +name: Continuous Deployment (Internal Testnet) +# run after every successful CI job of new commits to the master branch +on: + workflow_run: + workflows: [Continuous Integration (Kava Master), Continuous Integration (Commit)] + types: + - completed +jobs: + # run default ci checks against master branch + no-op: + if: ${{ github.event.workflow_run.conclusion == 'success' }} + uses: ./.github/workflows/ci-lint.yml