mirror of
https://github.com/0glabs/0g-chain.git
synced 2024-11-10 10:05:18 +00:00
13 lines
425 B
YAML
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
|