From 879845cafb35187ba2fcaf4b688e3fc57fef5175 Mon Sep 17 00:00:00 2001 From: bashermens <31279994+hermensbas@users.noreply.github.com> Date: Sun, 16 Nov 2025 23:45:02 +0100 Subject: [PATCH] Update core-build-playerbots.yml --- .github/workflows/core-build-playerbots.yml | 15 ++++++++++++++- 1 file changed, 14 insertions(+), 1 deletion(-) diff --git a/.github/workflows/core-build-playerbots.yml b/.github/workflows/core-build-playerbots.yml index 0d7bf98f7..b8eebfe10 100644 --- a/.github/workflows/core-build-playerbots.yml +++ b/.github/workflows/core-build-playerbots.yml @@ -7,6 +7,12 @@ on: branches: [ "Playerbot" ] pull_request: branches: [ "Playerbot" ] + workflow_dispatch: + inputs: + playerbot_branch: + description: "Which branch of mod-playerbots should be used?" + required: false + default: "master" jobs: build: @@ -46,11 +52,18 @@ jobs: # - name: Clone Playerbot Module # run: git clone --depth=1 --branch=master https://github.com/mod-playerbots/mod-playerbots.git modules/mod-playerbots + # - name: Checkout Playerbot Module + # uses: actions/checkout@v3 + # with: + # repository: 'mod-playerbots/mod-playerbots' + # #ref: 'feature/core_update_10_2025' #used on core merge conflicts builds + # path: 'modules/mod-playerbots' + - name: Checkout Playerbot Module uses: actions/checkout@v3 with: repository: 'mod-playerbots/mod-playerbots' - #ref: 'feature/core_update_10_2025' #used on core merge conflicts builds + ref: ${{ github.event.inputs.playerbot_branch || 'master' }} path: 'modules/mod-playerbots' - name: Install Requirements