From d81f9a1229e4e372f1541fe6b55c53da97192efc Mon Sep 17 00:00:00 2001 From: Jim Myhrberg Date: Mon, 2 Dec 2024 19:37:33 +0000 Subject: [PATCH] fix(nightly): remove supurflous inputs from nightly-master workflow They're not needed for manual runs, and they were actively causing things to break when triggered by the schedule. --- .github/workflows/nightly-master.yml | 18 +----------------- 1 file changed, 1 insertion(+), 17 deletions(-) diff --git a/.github/workflows/nightly-master.yml b/.github/workflows/nightly-master.yml index a39e95e..4091793 100644 --- a/.github/workflows/nightly-master.yml +++ b/.github/workflows/nightly-master.yml @@ -8,20 +8,6 @@ on: git_sha: description: Override Emacs git commit SHA to build required: false - builder_ref: - description: "Git ref to checkout of build-emacs-for-macos" - required: true - default: "v0.6.54" - x86_64: - description: "Build x86_64 version of Emacs" - required: false - default: true - type: boolean - arm64: - description: "Build arm64 version of Emacs" - required: false - default: true - type: boolean jobs: build: @@ -30,7 +16,5 @@ jobs: with: git_ref: "master" git_sha: ${{ inputs.git_sha }} - builder_ref: ${{ inputs.builder_ref }} - x86_64: ${{ inputs.x86_64 }} - arm64: ${{ inputs.arm64 }} + builder_ref: "v0.6.54" secrets: inherit