Skip to content
Latchkey

Legacy / Build Develop workflow (frappe/frappe_docker)

The Legacy / Build Develop workflow from frappe/frappe_docker, explained and optimized by Latchkey.

A

CI health: A - excellent

Run this on Latchkey for self-healing, caching, and up to 58% lower cost.

Grade your own workflow free or run it on Latchkey →
Source: frappe/frappe_docker.github/workflows/build_develop.ymlLicense MITView source

What it does

This is the Legacy / Build Develop workflow from the frappe/frappe_docker repository, a real project running GitHub Actions. It is shown here with attribution under its MIT license.

Below, Latchkey shows a faster, safer version produced by its optimization engine.

The workflow

workflow (.yml)
name: Legacy / Build Develop

on:
  workflow_dispatch:

jobs:
  delegate:
    uses: ./.github/workflows/core-build-develop.yml
    permissions:
      contents: read
      packages: write
    secrets: inherit

The same workflow, on Latchkey

Removes redundant runs and caps runaway jobs. Added and changed lines are highlighted.

name: Legacy / Build Develop
 
on:
  workflow_dispatch:
 
jobs:
  delegate:
    timeout-minutes: 30
    uses: ./.github/workflows/core-build-develop.yml
    permissions:
      contents: read
      packages: write
    secrets: inherit
 

What changed

This workflow runs 1 job per trigger. On Latchkey the same minutes cost up to 58% less than GitHub-hosted, with zero queue time.