File tree 2 files changed +5
-5
lines changed
2 files changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -23,7 +23,7 @@ concurrency:
23
23
24
24
jobs :
25
25
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
27
27
# only useful to the Synapse core team.
28
28
# All other workflow steps depend on this one, thus if 'should_run_workflow' is not 'true', the rest
29
29
# of the workflow will be skipped as well.
32
32
should_run_workflow : ${{ steps.check_condition.outputs.should_run_workflow }}
33
33
steps :
34
34
- 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"
36
36
37
37
mypy :
38
38
needs : check_repo
Original file line number Diff line number Diff line change @@ -22,17 +22,17 @@ concurrency:
22
22
23
23
jobs :
24
24
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
26
26
# only useful to the Synapse core team.
27
27
# All other workflow steps depend on this one, thus if 'should_run_workflow' is not 'true', the rest
28
28
# of the workflow will be skipped as well.
29
- if : github.repository == 'matrix-org /synapse'
29
+ if : github.repository == 'element-hq /synapse'
30
30
runs-on : ubuntu-latest
31
31
outputs :
32
32
should_run_workflow : ${{ steps.check_condition.outputs.should_run_workflow }}
33
33
steps :
34
34
- 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"
36
36
37
37
mypy :
38
38
needs : check_repo
You can’t perform that action at this time.
0 commit comments