Skip to content

feat(dcellar-web-ui): add sp meta #202

feat(dcellar-web-ui): add sp meta

feat(dcellar-web-ui): add sp meta #202

name: comment deploy scheduler
on:
issue_comment:
types: [created]
jobs:
pre-check:
runs-on: ubuntu-latest
if: (contains(github.event.comment.body, '/e2e-deploy') || contains(github.event.comment.body, '/qa-deploy'))
outputs:
codeowners: ${{ steps.codeowners.outputs.content }}
steps:
- name: Checkout repository
uses: actions/checkout@v3
- name: Read codeowners
id: codeowners
uses: juliangruber/read-file-action@v1
with:
path: .github/CODEOWNERS
check-codeowners:
runs-on: ubuntu-latest
needs: [pre-check]
if: (!contains(needs.pre-check.outputs.codeowners, github.event.comment.user.login))
steps:
- name: Checkout repository
uses: actions/checkout@v3
- name: Create Version Comment
uses: peter-evans/create-or-update-comment@v2
with:
issue-number: ${{ github.event.issue.number }}
comment-id: ${{ github.event.comment.id }}
body: |
++++++
Please contact codeowners to deploy!
reactions: rocket
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
dcellar-web-ui-e2e-deploy-with-qa:
needs: [pre-check]
if: (contains(needs.pre-check.outputs.codeowners, github.event.comment.user.login) && ((github.event.comment.body == '/e2e-deploy:dcellar-web-ui') || (github.event.comment.body == '/e2e-deploy-qa:dcellar-web-ui')))
uses: node-real/dcellar-fe/.github/workflows/dcellar-web-ui-e2e-cicd.yml@main
secrets: inherit
with:
app_name: dcellar-web-ui
env: qa
dcellar-web-ui-e2e-deploy-with-testnet:
needs: [pre-check]
if: (contains(needs.pre-check.outputs.codeowners, github.event.comment.user.login) && (github.event.comment.body == '/e2e-deploy-testnet:dcellar-web-ui'))
uses: node-real/dcellar-fe/.github/workflows/dcellar-web-ui-e2e-cicd.yml@main
secrets: inherit
with:
app_name: dcellar-web-ui
env: testnet
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'))
uses: node-real/dcellar-fe/.github/workflows/dcellar-web-ui-qa-cicd.yml@main
secrets: inherit
with:
app_name: dcellar-web-ui
env: qa