File tree Expand file tree Collapse file tree 2 files changed +13
-13
lines changed
crates/bevy_mod_scripting_functions/src Expand file tree Collapse file tree 2 files changed +13
-13
lines changed Original file line number Diff line number Diff line change @@ -75,18 +75,18 @@ jobs:
75
75
jq -c . matrix.json > matrix-one-line.json
76
76
echo "matrix=$(cat matrix-one-line.json)" >> $GITHUB_OUTPUT
77
77
78
- check-is-fork :
79
- outputs :
80
- is_fork : ${{ steps.check-fork.outputs.is_fork }}
81
- steps :
82
- - name : Check if fork
83
- id : check-fork
84
- run : |
85
- if [ "${{ github.repository }}" != "${{ github.event.pull_request.head.repo.full_name }}" ]; then
86
- echo "is_fork=true" >> $GITHUB_OUTPUT
87
- else
88
- echo "is_fork=false" >> $GITHUB_OUTPUT
89
- fi
78
+ check-is-fork :
79
+ outputs :
80
+ is_fork : ${{ steps.check-fork.outputs.is_fork }}
81
+ steps :
82
+ - name : Check if fork
83
+ id : check-fork
84
+ run : |
85
+ if [ "${{ github.repository }}" != "${{ github.event.pull_request.head.repo.full_name }}" ]; then
86
+ echo "is_fork=true" >> $GITHUB_OUTPUT
87
+ else
88
+ echo "is_fork=false" >> $GITHUB_OUTPUT
89
+ fi
90
90
check :
91
91
needs : [check-needs-run, generate-job-matrix, check-is-fork]
92
92
permissions :
Original file line number Diff line number Diff line change @@ -14,7 +14,7 @@ impl Plugin for ScriptFunctionsPlugin {
14
14
register_bevy_bindings ( app) ;
15
15
register_core_functions ( app) ;
16
16
17
- // TODO: if bevy ever does this itself we should remove this
17
+ // TODO: if bevy ever does this itself we should remove this.
18
18
app. world_mut ( ) . register_component :: < Parent > ( ) ;
19
19
app. world_mut ( ) . register_component :: < Children > ( ) ;
20
20
}
You can’t perform that action at this time.
0 commit comments