Skip to content
Merged
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
The table of contents is too big for display.
Diff view
Diff view
  •  
  •  
  •  
File renamed without changes.
6 changes: 4 additions & 2 deletions .github/workflows/continuous-delivery.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@ on:
type: choice
options:
- deploy-staging # Re-deploy to staging (e.g., after infra change)
- deploy-staging-skip-freeze # Deploy to staging, ignoring the freeze window
- promote-to-production # Hotfix: promote staging to prod immediately
- weekly-release # Trigger official release manually

Expand All @@ -39,8 +40,9 @@ jobs:
build-image:
needs: [check-freeze]
if: |
(github.event_name == 'push' && needs.check-freeze.outputs.frozen == 'false') ||
(github.event_name == 'workflow_dispatch' && github.event.inputs.action == 'deploy-staging')
always() &&
((github.event_name == 'push' && needs.check-freeze.outputs.frozen == 'false') ||
(github.event_name == 'workflow_dispatch' && (github.event.inputs.action == 'deploy-staging' || github.event.inputs.action == 'deploy-staging-skip-freeze')))
runs-on: depot-ubuntu-24.04
concurrency:
group: deploy-staging
Expand Down
6 changes: 6 additions & 0 deletions .github/workflows/reusable-finalize-translations-pr.yml
Original file line number Diff line number Diff line change
Expand Up @@ -112,4 +112,10 @@ jobs:
merge_method: 'squash'
});

await github.rest.git.deleteRef({
owner: context.repo.owner,
repo: context.repo.repo,
ref: `heads/${branchName}`
});


Loading
Loading