From 4327e1c581d9b4591a1923277021366b4baf7f1a Mon Sep 17 00:00:00 2001 From: Jonathan Lucas Date: Fri, 6 Jun 2025 17:57:47 -0500 Subject: [PATCH] updated powershell in reindex_on_merge --- .github/workflows/reindex_on_merge.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/reindex_on_merge.yml b/.github/workflows/reindex_on_merge.yml index 8e6e400..cfdee24 100644 --- a/.github/workflows/reindex_on_merge.yml +++ b/.github/workflows/reindex_on_merge.yml @@ -14,14 +14,14 @@ jobs: # This condition ensures the job only runs if the pull request was actually merged. if: github.event.pull_request.merged == true || github.event_name == 'workflow_dispatch' - # This tells GitHub to run this job on one of your self-hosted runners. runs-on: Windows # *** KEY CHANGE *** - # Set the default shell to PowerShell, which is native to your Windows runner. + # Changed the shell from 'pwsh' to 'powershell' to use the default + # Windows PowerShell, which should be available on your runner. defaults: run: - shell: pwsh + shell: powershell steps: # Step 1: Check out the repository's code