Skip to content

Commit 32447b0

Browse files
committedDec 13, 2023
Update nightly jobs to run on element-hq/synapse.
1 parent dfcb822 commit 32447b0

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed
 

‎.github/workflows/latest_deps.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ concurrency:
2323

2424
jobs:
2525
check_repo:
26-
# Prevent this workflow from running on any fork of Synapse other than matrix-org/synapse, as it is
26+
# Prevent this workflow from running on any fork of Synapse other than element-hq/synapse, as it is
2727
# only useful to the Synapse core team.
2828
# All other workflow steps depend on this one, thus if 'should_run_workflow' is not 'true', the rest
2929
# of the workflow will be skipped as well.
@@ -32,7 +32,7 @@ jobs:
3232
should_run_workflow: ${{ steps.check_condition.outputs.should_run_workflow }}
3333
steps:
3434
- id: check_condition
35-
run: echo "should_run_workflow=${{ github.repository == 'matrix-org/synapse' }}" >> "$GITHUB_OUTPUT"
35+
run: echo "should_run_workflow=${{ github.repository == 'element-hq/synapse' }}" >> "$GITHUB_OUTPUT"
3636

3737
mypy:
3838
needs: check_repo

‎.github/workflows/twisted_trunk.yml

+3-3
Original file line numberDiff line numberDiff line change
@@ -22,17 +22,17 @@ concurrency:
2222

2323
jobs:
2424
check_repo:
25-
# Prevent this workflow from running on any fork of Synapse other than matrix-org/synapse, as it is
25+
# Prevent this workflow from running on any fork of Synapse other than element-hq/synapse, as it is
2626
# only useful to the Synapse core team.
2727
# All other workflow steps depend on this one, thus if 'should_run_workflow' is not 'true', the rest
2828
# of the workflow will be skipped as well.
29-
if: github.repository == 'matrix-org/synapse'
29+
if: github.repository == 'element-hq/synapse'
3030
runs-on: ubuntu-latest
3131
outputs:
3232
should_run_workflow: ${{ steps.check_condition.outputs.should_run_workflow }}
3333
steps:
3434
- id: check_condition
35-
run: echo "should_run_workflow=${{ github.repository == 'matrix-org/synapse' }}" >> "$GITHUB_OUTPUT"
35+
run: echo "should_run_workflow=${{ github.repository == 'element-hq/synapse' }}" >> "$GITHUB_OUTPUT"
3636

3737
mypy:
3838
needs: check_repo

0 commit comments

Comments
 (0)
Please sign in to comment.