From f82b829aef164f4db0c8c0b604c3163a0ef151d2 Mon Sep 17 00:00:00 2001 From: Jason T Alborough Date: Wed, 25 Sep 2024 09:21:10 -0400 Subject: [PATCH] Create essentialsplugins-betabuilds-caller.yml --- .../essentialsplugins-betabuilds-caller.yml | 22 +++++++++++++++++++ 1 file changed, 22 insertions(+) create mode 100644 .github/workflows/essentialsplugins-betabuilds-caller.yml diff --git a/.github/workflows/essentialsplugins-betabuilds-caller.yml b/.github/workflows/essentialsplugins-betabuilds-caller.yml new file mode 100644 index 0000000..8ca618c --- /dev/null +++ b/.github/workflows/essentialsplugins-betabuilds-caller.yml @@ -0,0 +1,22 @@ +name: Beta Build + +on: + push: + branches-ignore: + - "main" + + workflow_dispatch: + inputs: + branch: + description: 'Branch to build' + required: true + type: string + +jobs: + call-workflow: + uses: PepperDash/workflow-templates/.github/workflows/essentialsplugins-builds.yml@main + secrets: inherit + with: + branch: ${{ github.ref_name }} + default-branch: "main" +