Skip to content

Commit bfac727

Browse files
authored
Apply release blocker checks to cut branches workflow (#28551)
* Apply release blocker checks to cut branches workflow Signed-off-by: Michael Telatynski <[email protected]> * Iterate Signed-off-by: Michael Telatynski <[email protected]> --------- Signed-off-by: Michael Telatynski <[email protected]>
1 parent 8e213c5 commit bfac727

File tree

1 file changed

+15
-0
lines changed

1 file changed

+15
-0
lines changed

.github/workflows/release_prepare.yml

+15
Original file line numberDiff line numberDiff line change
@@ -19,8 +19,23 @@ on:
1919
default: true
2020
permissions: {} # Uses ELEMENT_BOT_TOKEN instead
2121
jobs:
22+
checks:
23+
name: Sanity checks
24+
strategy:
25+
matrix:
26+
repo:
27+
- matrix-org/matrix-js-sdk
28+
- element-hq/element-web
29+
- element-hq/element-desktop
30+
uses: matrix-org/matrix-js-sdk/.github/workflows/release-checks.yml@develop
31+
secrets:
32+
GITHUB_TOKEN: ${{ secrets.ELEMENT_BOT_TOKEN }}
33+
with:
34+
repository: ${{ matrix.repo }}
35+
2236
prepare:
2337
runs-on: ubuntu-24.04
38+
needs: checks
2439
env:
2540
# The order is specified bottom-up to avoid any races for allchange
2641
REPOS: matrix-js-sdk element-web element-desktop

0 commit comments

Comments
 (0)