change Agent interface to return a list of messages #27
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: Container Apps CI/CD pipeline | |
| on: | |
| push: | |
| branches: | |
| - main | |
| paths: | |
| - "app/**" | |
| tags: | |
| - v*.*.* | |
| workflow_dispatch: | |
| # Set up permissions for deploying with secretless Azure federated credentials | |
| # https://learn.microsoft.com/en-us/azure/developer/github/connect-from-azure?tabs=azure-portal%2Clinux#set-up-azure-login-with-openid-connect-authentication | |
| permissions: | |
| id-token: write | |
| contents: read | |
| jobs: | |
| changes-detection: | |
| runs-on: ubuntu-latest | |
| outputs: | |
| env-name: ${{steps.set-deploy-env.outputs.DEPLOY_ENVIRONMENT}} | |
| build-copilot: ${{ steps.changes.outputs.copilot }} | |
| build-frontend: ${{ steps.changes.outputs.frontend }} | |
| build-account-api: ${{ steps.changes.outputs.account-api }} | |
| build-payment-api: ${{ steps.changes.outputs.payment-api }} | |
| build-transaction-api: ${{ steps.changes.outputs.transaction-api }} | |
| steps: | |
| - uses: actions/checkout@v2 | |
| - name: Filter Changes | |
| uses: dorny/paths-filter@v2 | |
| id: changes | |
| with: | |
| filters: | | |
| copilot: | |
| - 'app/copilot/**' | |
| frontend: | |
| - 'app/frontend/**' | |
| account-api: | |
| - 'app/business-api/account/**' | |
| payment-api: | |
| - 'app/business-api/payment/**' | |
| transaction-api: | |
| - 'app/business-api/transactions-history/**' | |
| - name: Set environment for branch | |
| id: set-deploy-env | |
| run: | | |
| echo "checking branch name [${{github.ref_name}}]" | |
| if [[ ${{github.ref_name}} == 'main' ]]; then | |
| echo "main branch detected. Set Development environment" | |
| echo "DEPLOY_ENVIRONMENT=Development" >> "$GITHUB_OUTPUT" | |
| elif [[ ${{github.ref_name}} == *'release'* ]]; then | |
| echo "release branch detected. Set Test environment" | |
| echo "DEPLOY_ENVIRONMENT=Test" >> "$GITHUB_OUTPUT" | |
| elif [[ ${{github.ref_name}} == *'v'* ]]; then | |
| echo "tag detected. Set Production environment" | |
| echo "DEPLOY_ENVIRONMENT=Production" >> "$GITHUB_OUTPUT" | |
| else | |
| echo "branch not detected. Set Development environment as default" | |
| echo "DEPLOY_ENVIRONMENT=Development" >> "$GITHUB_OUTPUT" | |
| fi | |
| build-account-app: | |
| needs: changes-detection | |
| if : ${{ needs.changes-detection.outputs.build-account-api == 'true' }} | |
| uses: ./.github/workflows/acr-build-push.yaml | |
| with: | |
| env-name: ${{ needs.changes-detection.outputs.env-name}} | |
| image-name: agent-openai-java-banking-assistant/account-api | |
| app-folder-path: ./app/business-api/account | |
| secrets: inherit | |
| deploy-account-app: | |
| needs: [changes-detection,build-account-app] | |
| if: ${{ needs.changes-detection.outputs.build-account-api == 'true' }} | |
| uses: ./.github/workflows/aca-deploy.yaml | |
| with: | |
| env-name: ${{ needs.changes-detection.outputs.env-name}} | |
| image-name: agent-openai-java-banking-assistant/account-api | |
| container-app-env-name: ${{ vars.ACA_DEV_ENV_NAME}} | |
| container-app-name: ${{ vars.ACCOUNTS_ACA_DEV_APP_NAME }} | |
| secrets: inherit | |
| build-transaction-app: | |
| needs: changes-detection | |
| if : ${{ needs.changes-detection.outputs.build-transaction-api == 'true' }} | |
| uses: ./.github/workflows/acr-build-push.yaml | |
| with: | |
| env-name: ${{ needs.changes-detection.outputs.env-name}} | |
| image-name: agent-openai-java-banking-assistant/transactions-history-api | |
| app-folder-path: ./app/business-api/transactions-history | |
| secrets: inherit | |
| deploy-transaction-app: | |
| needs: [changes-detection,build-transaction-app] | |
| if: ${{ needs.changes-detection.outputs.build-transaction-api == 'true' }} | |
| uses: ./.github/workflows/aca-deploy.yaml | |
| with: | |
| env-name: ${{ needs.changes-detection.outputs.env-name}} | |
| image-name: agent-openai-java-banking-assistant/transactions-history-api | |
| container-app-env-name: ${{ vars.ACA_DEV_ENV_NAME}} | |
| container-app-name: ${{ vars.TRANSACTIONS_ACA_DEV_APP_NAME }} | |
| secrets: inherit | |
| build-payment-app: | |
| needs: changes-detection | |
| if : ${{ needs.changes-detection.outputs.build-payment-api == 'true' }} | |
| uses: ./.github/workflows/acr-build-push.yaml | |
| with: | |
| env-name: ${{ needs.changes-detection.outputs.env-name}} | |
| image-name: agent-openai-java-banking-assistant/payment-api | |
| app-folder-path: ./app/business-api/payment | |
| secrets: inherit | |
| deploy-payment-app: | |
| needs: [changes-detection,build-payment-app] | |
| if: ${{ needs.changes-detection.outputs.build-payment-api == 'true' }} | |
| uses: ./.github/workflows/aca-deploy.yaml | |
| with: | |
| env-name: ${{ needs.changes-detection.outputs.env-name}} | |
| image-name: agent-openai-java-banking-assistant/payment-api | |
| container-app-env-name: ${{ vars.ACA_DEV_ENV_NAME}} | |
| container-app-name: ${{ vars.PAYMENTS_ACA_DEV_APP_NAME }} | |
| secrets: inherit | |
| build-frontend-app: | |
| needs: changes-detection | |
| if : ${{ needs.changes-detection.outputs.build-frontend == 'true' }} | |
| uses: ./.github/workflows/acr-build-push.yaml | |
| with: | |
| env-name: ${{ needs.changes-detection.outputs.env-name}} | |
| image-name: agent-openai-java-banking-assistant/web | |
| app-folder-path: ./app/frontend | |
| secrets: inherit | |
| deploy-frontend-app: | |
| needs: [changes-detection,build-frontend-app] | |
| if: ${{ needs.changes-detection.outputs.build-frontend == 'true' }} | |
| uses: ./.github/workflows/aca-deploy.yaml | |
| with: | |
| env-name: ${{ needs.changes-detection.outputs.env-name}} | |
| image-name: agent-openai-java-banking-assistant/web | |
| container-app-env-name: ${{ vars.ACA_DEV_ENV_NAME}} | |
| container-app-name: ${{ vars.WEB_ACA_DEV_APP_NAME }} | |
| secrets: inherit | |
| build-copilot-app: | |
| needs: changes-detection | |
| if : ${{ needs.changes-detection.outputs.build-copilot == 'true' }} | |
| uses: ./.github/workflows/acr-build-push.yaml | |
| with: | |
| env-name: ${{ needs.changes-detection.outputs.env-name}} | |
| image-name: agent-openai-java-banking-assistant/copilot | |
| app-folder-path: ./app/copilot | |
| secrets: inherit | |
| deploy-copilot-app: | |
| needs: [changes-detection,build-copilot-app] | |
| if: ${{ needs.changes-detection.outputs.build-copilot == 'true' }} | |
| uses: ./.github/workflows/aca-deploy.yaml | |
| with: | |
| env-name: ${{ needs.changes-detection.outputs.env-name}} | |
| image-name: agent-openai-java-banking-assistant/copilot | |
| container-app-env-name: ${{ vars.ACA_DEV_ENV_NAME}} | |
| container-app-name: ${{ vars.COPILOT_ACA_DEV_APP_NAME }} | |
| secrets: inherit | |