Files
emacs-builds/.github/workflows/nightly-master.yml
Jim Myhrberg d81f9a1229 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.
2024-12-02 19:37:33 +00:00

21 lines
394 B
YAML

---
name: Nightly (master)
on:
schedule:
- cron: "0 23 * * *"
workflow_dispatch:
inputs:
git_sha:
description: Override Emacs git commit SHA to build
required: false
jobs:
build:
name: Build
uses: ./.github/workflows/_build.yml
with:
git_ref: "master"
git_sha: ${{ inputs.git_sha }}
builder_ref: "v0.6.54"
secrets: inherit