Revert "refactor: update get_redis return type and clean up main.py i… #3
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: Trigger UAT deployment | |
| on: | |
| push: | |
| branches: | |
| - main | |
| workflow_dispatch: | |
| jobs: | |
| trigger: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Notify main repo of submodule update | |
| uses: peter-evans/repository-dispatch@v3 | |
| with: | |
| token: ${{ secrets.MAIN_REPO_TRIGGER_TOKEN }} | |
| repository: Dispatch-AI-com/dispatchai-platform | |
| event-type: submodule-updated | |
| client-payload: | | |
| { | |
| "submodule": "${{ github.repository }}", | |
| "ref": "${{ github.ref }}", | |
| "sha": "${{ github.sha }}", | |
| "actor": "${{ github.actor }}" | |
| } |