Skip to content

feat: enable cloud native on oracle-api (#1327) #401

feat: enable cloud native on oracle-api (#1327)

feat: enable cloud native on oracle-api (#1327) #401

Workflow file for this run

name: Merge
on:
push:
branches: [main]
paths-ignore:
- '*.md'
- '.github/**'
- '.github/graphics/**'
- '!.github/workflows/**'
workflow_dispatch:
inputs:
tag:
description: "Container tag; e.g. PR number or latest"
type: string
default: latest
concurrency:
# Do not interrupt previous workflows
group: ${{ github.workflow }}
cancel-in-progress: false
jobs:
deploys:
name: TEST
secrets: inherit
uses: ./.github/workflows/.deploy.yml
with:
tag: ${{ inputs.tag }} # Uses PR number if blank
target: test
log_env_target: test
deploy-prod:
name: PROD
needs: [deploys]
secrets: inherit
uses: ./.github/workflows/.deploy.yml
with:
tag: ${{ inputs.tag }} # Uses PR number if blank
target: prod
log_env_target: production