frontend: load task history via tasks/get instead of IndexedDB #6223
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: Repository dispatch on push or release | |
| on: | |
| push: | |
| paths: | |
| - "frontend/**" | |
| - "backend/**" | |
| - '.github/workflows/repository-dispatch.yml' | |
| - '.github/workflows/backend-lint-test.yml' | |
| - '.github/workflows/frontend-verify.yml' | |
| tags: | |
| - '*' | |
| branches: | |
| - '**' | |
| permissions: | |
| id-token: write | |
| contents: read | |
| jobs: | |
| backend-verify: | |
| uses: ./.github/workflows/backend-lint-test.yml | |
| permissions: | |
| contents: read | |
| frontend-verify: | |
| uses: ./.github/workflows/frontend-verify.yml | |
| permissions: | |
| contents: read | |
| dispatch: | |
| needs: [backend-verify, frontend-verify] | |
| if: "!failure() && !cancelled()" | |
| runs-on: blacksmith-2vcpu-ubuntu-2404 | |
| steps: | |
| - uses: aws-actions/configure-aws-credentials@v4 | |
| with: | |
| aws-region: ${{ vars.RP_AWS_CRED_REGION }} | |
| role-to-assume: arn:aws:iam::${{ secrets.RP_AWS_CRED_ACCOUNT_ID }}:role/${{ vars.RP_AWS_CRED_BASE_ROLE_NAME }}${{ github.event.repository.name }} | |
| - uses: aws-actions/aws-secretsmanager-get-secrets@v2 | |
| with: | |
| secret-ids: | | |
| ,sdlc/prod/github/actions_bot_token | |
| parse-json-secrets: true | |
| - name: Repository Dispatch on Release | |
| uses: peter-evans/repository-dispatch@caebe2a7c967e9f927ff8780fea8e16e50b5ce40 | |
| if: ${{ startsWith(github.ref, 'refs/tags/v') }} | |
| with: | |
| token: ${{ env.ACTIONS_BOT_TOKEN }} | |
| repository: redpanda-data/console-enterprise | |
| event-type: release | |
| client-payload: '{"branch": "master", "commit_sha": "${{ github.sha }}", "tag_name": "${{ github.event.release.tag_name }}"}' | |
| - name: Repository Dispatch on push | |
| uses: peter-evans/repository-dispatch@caebe2a7c967e9f927ff8780fea8e16e50b5ce40 | |
| if: ${{ !startsWith(github.ref, 'refs/tags/v') }} | |
| with: | |
| token: ${{ env.ACTIONS_BOT_TOKEN }} | |
| repository: redpanda-data/console-enterprise | |
| event-type: push | |
| client-payload: '{"branch": "${{ github.ref_name }}", "commit_sha": "${{ github.sha }}"}' |