0g-chain/.github/workflows/cd-internal-testnet.yml
Levi Schoen 35041fd909
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
2022-11-30 18:52:03 -05:00

13 lines
425 B
YAML

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