From 2778d283e33d5253fc7b278d081036ce6032382d Mon Sep 17 00:00:00 2001 From: Arjan Dikhoff Date: Sat, 12 Oct 2024 11:50:00 +0200 Subject: [PATCH] Proper naming --- .github/workflows/sync_class_ref.yml | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/workflows/sync_class_ref.yml b/.github/workflows/sync_class_ref.yml index 3acd2ee4413..0bf4002fafc 100644 --- a/.github/workflows/sync_class_ref.yml +++ b/.github/workflows/sync_class_ref.yml @@ -27,7 +27,7 @@ jobs: - name: Checkout the engine repository uses: actions/checkout@v4 with: - repository: 'redot-engine/redot-engine' + repository: 'Redot-Engine/redot-engine' # Use the appropriate branch for the documentation version. ref: ${{ env.engine_rev }} path: './.engine-src' @@ -38,7 +38,7 @@ jobs: cd ./.engine-src hash=$(git rev-parse HEAD) hash_short=$(git rev-parse --short HEAD) - echo "Checked out redot-engine/redot at $hash" + echo "Checked out redot-engine/redot-engine at $hash" echo "rev_hash=$hash" >> $GITHUB_OUTPUT echo "rev_hash_short=$hash_short" >> $GITHUB_OUTPUT @@ -59,10 +59,10 @@ jobs: delete-branch: true # Configure the commit author. - author: 'Redot Organization ' - committer: 'Redot Organization ' + author: 'Redot Organization ' + committer: 'Redot Organization ' # Configure the pull-request. title: 'classref: Sync with current ${{ env.engine_rev }} branch (${{ steps.engine.outputs.rev_hash_short }})' - body: 'Update Redot API online class reference to match the engine at https://github.com/redot-engine/redot/commit/${{ steps.engine.outputs.rev_hash }} (`${{ env.engine_rev }}`).' + body: 'Update Redot API online class reference to match the engine at https://github.com/Redot-Engine/redot-engine/commit/${{ steps.engine.outputs.rev_hash }} (`${{ env.engine_rev }}`).' labels: 'area:class reference,bug,enhancement'