| 12345678910111213141516171819202122 |
- name: build-on-push
- # HARD STOP — push-triggered GHCR builds DISABLED (2026-07-18).
- # Was firing on every main push and adding load/noise.
- # Disabled in GitHub UI as well. Manual re-enable only with flndrn OK.
- on:
- workflow_dispatch:
- inputs:
- confirm:
- description: 'Type BUILD to allow future re-enable of this workflow body'
- required: true
- default: ''
- jobs:
- build-disabled:
- name: image build on push is OFF
- runs-on: ubuntu-latest
- if: false
- steps:
- - name: noop
- run: echo "This job never runs. build-on-push is fully disabled."
|