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
This commit is contained in:
Levi Schoen 2022-11-30 15:52:03 -08:00 committed by GitHub
parent f167c4b562
commit 35041fd909
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -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