Files
emacs-builds/.github/workflows/nightly-master.yml
Jim Myhrberg d40d900d61 refactor(workflows): simplify default builder_ref setting
Allow the default builder_ref to be set in the a single location, the
_prepare shared workflow. Other workflows essentially have a override
option, and no longer need explicit default values set.
2024-12-02 19:51:29 +00:00

20 lines
365 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 }}
secrets: inherit