build-on-push.yml 598 B

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