Skip to content

Commit

Permalink
Storage: create release PRs On Fridays (#10017)
Browse files Browse the repository at this point in the history
## Problem

To give Storage more time on preprod — create a release branch on Friday

## Summary of changes
- Automatically create Storage release PR on Friday instead of Monday
  • Loading branch information
bayandin authored Dec 12, 2024
1 parent 739f627 commit 0bd8eca
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ name: Create Release Branch
on:
schedule:
# It should be kept in sync with if-condition in jobs
- cron: '0 6 * * MON' # Storage release
- cron: '0 6 * * FRI' # Storage release
- cron: '0 6 * * THU' # Proxy release
workflow_dispatch:
inputs:
Expand All @@ -29,7 +29,7 @@ defaults:

jobs:
create-storage-release-branch:
if: ${{ github.event.schedule == '0 6 * * MON' || inputs.create-storage-release-branch }}
if: ${{ github.event.schedule == '0 6 * * FRI' || inputs.create-storage-release-branch }}

permissions:
contents: write
Expand Down

1 comment on commit 0bd8eca

@github-actions
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

7890 tests run: 7549 passed, 0 failed, 341 skipped (full report)


Flaky tests (3)

Postgres 16

Postgres 14

Code coverage* (full report)

  • functions: 31.3% (8381 of 26760 functions)
  • lines: 47.7% (65948 of 138291 lines)

* collected from Rust tests only


The comment gets automatically updated with the latest test results
0bd8eca at 2024-12-12T11:38:52.638Z :recycle:

Please sign in to comment.