We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8e213c5 commit bfac727Copy full SHA for bfac727
.github/workflows/release_prepare.yml
@@ -19,8 +19,23 @@ on:
19
default: true
20
permissions: {} # Uses ELEMENT_BOT_TOKEN instead
21
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
+
36
prepare:
37
runs-on: ubuntu-24.04
38
+ needs: checks
39
env:
40
# The order is specified bottom-up to avoid any races for allchange
41
REPOS: matrix-js-sdk element-web element-desktop
0 commit comments