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