mirror of
https://github.com/jimeh/emacs-builds.git
synced 2026-02-19 09:36:43 +00:00
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.
20 lines
365 B
YAML
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
|