Skip to content

Commit

Permalink
Merge pull request #283 from node-real/release/mainnet_1123
Browse files Browse the repository at this point in the history
feat(dcellar-web-ui): release mainnet 1123
  • Loading branch information
devinxl authored Nov 23, 2023
2 parents 86e3e20 + 0347b11 commit ef99241
Show file tree
Hide file tree
Showing 2 changed files with 32 additions and 1 deletion.
10 changes: 9 additions & 1 deletion .github/workflows/comment-deploy-scheduler.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ on:
jobs:
pre-check:
runs-on: ubuntu-latest
if: (contains(github.event.comment.body, '/e2e-deploy') || contains(github.event.comment.body, '/qa-deploy'))
if: (contains(github.event.comment.body, '/e2e-deploy') || contains(github.event.comment.body, '/new-e2e-deploy') || contains(github.event.comment.body, '/qa-deploy'))
outputs:
codeowners: ${{ steps.codeowners.outputs.content }}
steps:
Expand Down Expand Up @@ -60,6 +60,14 @@ jobs:
with:
app_name: dcellar-web-ui
env: mainnet
dcellar-web-ui-new-e2e-deploy-with-qa:
needs: [pre-check]
if: (contains(needs.pre-check.outputs.codeowners, github.event.comment.user.login) && (github.event.comment.body == '/new-e2e-deploy-qa:dcellar-web-ui'))
uses: node-real/dcellar-fe/.github/workflows/dcellar-web-ui-new-e2e-cicd.yml@main
secrets: inherit
with:
app_name: dcellar-web-ui
env: qa
dcellar-web-ui-qa-deploy:
needs: [pre-check]
if: (contains(needs.pre-check.outputs.codeowners, github.event.comment.user.login) && (github.event.comment.body == '/qa-deploy:dcellar-web-ui'))
Expand Down
23 changes: 23 additions & 0 deletions .github/workflows/dcellar-web-ui-new-e2e-cicd.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
name: dcellar-web-ui new e2e CICD

on:
workflow_call:
inputs:
app_name:
description: 'App name in GitOps is used for branch naming only.'
type: string
required: true
default: 'dcellar-web-ui'
env:
description: 'Specify the deployment environment'
type: string
required: true
default: 'qa'

jobs:
CICD:
uses: node-real/github-workflows/.github/workflows/dcellar-web-ui-new-e2e-cicd.yml@feat/opt-fe/devin
secrets: inherit
with:
app_name: ${{ inputs.app_name }}
env: ${{ inputs.env }}

0 comments on commit ef99241

Please sign in to comment.