Skip to content

Commit 39faff5

Browse files
committed
fix thing
1 parent a8be74c commit 39faff5

File tree

2 files changed

+13
-13
lines changed

2 files changed

+13
-13
lines changed

.github/workflows/bevy_mod_scripting.yml

Lines changed: 12 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -75,18 +75,18 @@ jobs:
7575
jq -c . matrix.json > matrix-one-line.json
7676
echo "matrix=$(cat matrix-one-line.json)" >> $GITHUB_OUTPUT
7777
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
9090
check:
9191
needs: [check-needs-run, generate-job-matrix, check-is-fork]
9292
permissions:

crates/bevy_mod_scripting_functions/src/lib.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ impl Plugin for ScriptFunctionsPlugin {
1414
register_bevy_bindings(app);
1515
register_core_functions(app);
1616

17-
// TODO: if bevy ever does this itself we should remove this
17+
// TODO: if bevy ever does this itself we should remove this.
1818
app.world_mut().register_component::<Parent>();
1919
app.world_mut().register_component::<Children>();
2020
}

0 commit comments

Comments
 (0)