diff --git a/.github/workflows/c3-e2e-dependabot.yml b/.github/workflows/c3-e2e-dependabot.yml index 584286befcf8..e91114ce79a1 100644 --- a/.github/workflows/c3-e2e-dependabot.yml +++ b/.github/workflows/c3-e2e-dependabot.yml @@ -39,7 +39,7 @@ jobs: # Note: please keep this job in sync with the e2e one #  in .github/workflows/c3-e2e.yml needs: [get-dependabot-bumped-framework] - name: ${{ format('Dependabot E2E ({0})', matrix.pm) }} + name: ${{ format('Dependabot E2E ({0}@{1})', matrix.pm.name, matrix.pm.version) }} strategy: fail-fast: false matrix: diff --git a/.github/workflows/c3-e2e-quarantine.yml b/.github/workflows/c3-e2e-quarantine.yml index f6d76ad99571..70c2ad7680c9 100644 --- a/.github/workflows/c3-e2e-quarantine.yml +++ b/.github/workflows/c3-e2e-quarantine.yml @@ -15,9 +15,9 @@ jobs: e2e: timeout-minutes: 30 concurrency: - group: ${{ github.workflow }}-${{ github.ref }}-${{ matrix.os }}-${{ matrix.pm }} + group: ${{ github.workflow }}-${{ github.ref }}-${{ matrix.os }}-${{ matrix.pm.name }}-${{ matrix.pm.version }} cancel-in-progress: true - name: ${{ format('E2E ({0})', matrix.pm) }} + name: ${{ format('E2E (quarantined) ({0}@{1} on {2})', matrix.pm.name, matrix.pm.version, matrix.os) }} if: ${{ github.repository_owner == 'cloudflare' }} strategy: matrix: diff --git a/.github/workflows/c3-e2e.yml b/.github/workflows/c3-e2e.yml index 0544b2ca4d3f..7f319b8fad0c 100644 --- a/.github/workflows/c3-e2e.yml +++ b/.github/workflows/c3-e2e.yml @@ -17,9 +17,9 @@ jobs: #  in .github/workflows/c3-e2e-dependabot.yml timeout-minutes: 45 concurrency: - group: ${{ github.workflow }}-${{ github.ref }}-${{ matrix.os }}-${{ matrix.pm }} + group: ${{ github.workflow }}-${{ github.ref }}-${{ matrix.os }}-${{ matrix.pm.name }}-${{ matrix.pm.version }} cancel-in-progress: true - name: ${{ format('E2E ({0} on {1})', matrix.pm, matrix.os) }} + name: ${{ format('E2E ({0}@{1} on {2})', matrix.pm.name, matrix.pm.version, matrix.os) }} if: github.repository_owner == 'cloudflare' && github.event.pull_request.user.login != 'dependabot[bot]' strategy: fail-fast: false