Skip to content

Commit

Permalink
Fix e2e test naming (#5858)
Browse files Browse the repository at this point in the history
  • Loading branch information
penalosa authored May 16, 2024
1 parent 5dd9573 commit e9f8a2f
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/c3-e2e-dependabot.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/c3-e2e-quarantine.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/c3-e2e.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit e9f8a2f

Please sign in to comment.