Skip to content

Commit 68b06d7

Browse files
authored
Update workflows referencing matrix-react-sdk to use only element-web (#4451)
1 parent 5f599ee commit 68b06d7

File tree

4 files changed

+7
-10
lines changed

4 files changed

+7
-10
lines changed

.github/workflows/downstream-end-to-end-tests.yml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,14 +21,13 @@ concurrency:
2121
jobs:
2222
playwright:
2323
name: Playwright
24-
uses: element-hq/matrix-react-sdk/.github/workflows/end-to-end-tests.yaml@develop
24+
uses: element-hq/element-web/.github/workflows/end-to-end-tests.yaml@develop
2525
permissions:
2626
actions: read
2727
issues: read
2828
pull-requests: read
2929
with:
3030
matrix-js-sdk-sha: ${{ github.sha }}
31-
react-sdk-repository: element-hq/matrix-react-sdk
3231
# We only want to run the playwright tests on merge queue to prevent regressions
3332
# from creeping in. They take a long time to run and consume multiple concurrent runners.
3433
skip: ${{ github.event_name != 'merge_group' }}

.github/workflows/notify-downstream.yaml

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,8 +14,6 @@ jobs:
1414
include:
1515
- repo: element-hq/element-web
1616
event: element-web-notify
17-
- repo: element-hq/matrix-react-sdk
18-
event: upstream-sdk-notify
1917

2018
runs-on: ubuntu-latest
2119
steps:

.github/workflows/release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ jobs:
2828
with:
2929
final: ${{ inputs.mode == 'final' }}
3030
npm: ${{ inputs.npm }}
31-
downstreams: '["element-hq/matrix-react-sdk", "element-hq/element-web"]'
31+
downstreams: '["element-hq/element-web"]'
3232

3333
docs:
3434
name: Publish Documentation

.github/workflows/tests.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -73,10 +73,10 @@ jobs:
7373
- if: needs.jest.result != 'skipped' && needs.jest.result != 'success'
7474
run: exit 1
7575

76-
matrix-react-sdk:
77-
name: Downstream test matrix-react-sdk
76+
element-web:
77+
name: Downstream test element-web
7878
if: github.event_name == 'merge_group'
79-
uses: element-hq/matrix-react-sdk/.github/workflows/tests.yml@develop
79+
uses: element-hq/element-web/.github/workflows/tests.yml@develop
8080
with:
8181
disable_coverage: true
8282
matrix-js-sdk-sha: ${{ github.sha }}
@@ -106,7 +106,7 @@ jobs:
106106
runs-on: ubuntu-latest
107107
if: always()
108108
needs:
109-
- matrix-react-sdk
109+
- element-web
110110
steps:
111111
- name: Skip SonarCloud on merge queues
112112
if: env.ENABLE_COVERAGE == 'false'
@@ -119,5 +119,5 @@ jobs:
119119
sha: ${{ github.sha }}
120120
target_url: https://github.com/${{ github.repository }}/actions/runs/${{ github.run_id }}
121121

122-
- if: needs.matrix-react-sdk.result != 'skipped' && needs.matrix-react-sdk.result != 'success'
122+
- if: needs.element-web.result != 'skipped' && needs.element-web.result != 'success'
123123
run: exit 1

0 commit comments

Comments
 (0)