Skip to content

Instantly share code, notes, and snippets.

@recursivecodes
Created June 23, 2020 14:56
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save recursivecodes/8d0bc7f711cadb68a30b1073847937a5 to your computer and use it in GitHub Desktop.
Save recursivecodes/8d0bc7f711cadb68a30b1073847937a5 to your computer and use it in GitHub Desktop.
start-qa-workflow.yaml
- name: 'Check Running DB Instance'
  run: |
    echo "::set-env name=DB_STATE::$( \
        oci db autonomous-database get \
        --autonomous-database-id ${{ secrets.AUTONOMOUS_DB_OCID }} \
        --query "data.\"lifecycle-state\"" \
        --raw-output \
    )"
- name: 'Start DB'
  if: ${{env.DB_STATE == 'STOPPED'}}
  run: |
    oci db autonomous-database start \
      --autonomous-database-id  ${{ secrets.AUTONOMOUS_DB_OCID }} \
      --wait-for-state AVAILABLE
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment