mirror of
https://github.com/jimeh/emacs-builds.git
synced 2026-02-19 11:56:40 +00:00
They're not needed for manual runs, and they were actively causing things to break when triggered by the schedule.
21 lines
394 B
YAML
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
|