Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 0 additions & 6 deletions .github/workflows/run-performance-e2e-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,12 +7,6 @@ on:
branches:
- 'release/*'

# Required so the reusable workflow run-performance-e2e.yml can use id-token and actions
permissions:
contents: read
id-token: write
actions: write

jobs:
check-release-trigger:
name: Check if Release Performance Tests Should Run
Expand Down
8 changes: 3 additions & 5 deletions .github/workflows/run-performance-e2e.yml
Original file line number Diff line number Diff line change
Expand Up @@ -71,11 +71,9 @@ permissions:
actions: write

concurrency:
# Include build_variant so experimental (exp) and release/direct (rc) don't share the same
# queue — avoids "Build Apps" (direct/release) and experimental runs canceling each other.
# Note: GitHub allows at most 1 running + 1 pending per group; a 3rd run cancels the pending one.
group: performance-e2e-${{ github.ref }}-${{ github.event_name }}-${{ inputs.build_variant || 'rc' }}
# Do not cancel in-progress runs; pending runs can still be replaced by a newer trigger.
group: performance-e2e-${{ github.ref }}-${{ github.event_name }}
# Do not cancel in-progress runs: scheduled runs every 3h can overlap with long Bitrise builds.
# New runs will wait in queue until the current one finishes instead of canceling it.
cancel-in-progress: false

env:
Expand Down
Loading