chore(Authoring): Move model selection in AI Chat from advanced to basic editing view #818
Workflow file for this run
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: Develop branch PR workflows | |
| on: | |
| pull_request: | |
| branches: | |
| - develop | |
| jobs: | |
| test-coverage: | |
| uses: WISE-Community/WISE-Client/.github/workflows/test-coverage.yml@develop | |
| generate-messages: | |
| needs: test-coverage | |
| uses: WISE-Community/WISE-Client/.github/workflows/generate-messages.yml@develop | |
| secrets: | |
| token: ${{ secrets.GITHUB_TOKEN }} | |
| build: | |
| needs: [generate-messages, test-coverage] | |
| uses: WISE-Community/WISE-Client/.github/workflows/code-build.yml@develop | |
| secrets: | |
| aws_key: ${{secrets.AWS_ACCESS_KEY_ID}} | |
| aws_secret_key: ${{secrets.AWS_SECRET_ACCESS_KEY}} |