mirror of
https://github.com/0glabs/0g-chain.git
synced 2024-12-25 07:45:18 +00:00
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:
parent
f167c4b562
commit
35041fd909
12
.github/workflows/cd-internal-testnet.yml
vendored
Normal file
12
.github/workflows/cd-internal-testnet.yml
vendored
Normal 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
|
Loading…
Reference in New Issue
Block a user