Add reminder note to manual Docker build workflow
This commit is contained in:
parent
91b8722bdb
commit
e6332ce512
2 changed files with 12 additions and 0 deletions
6
.github/workflows/docker-build-manual.yml
vendored
6
.github/workflows/docker-build-manual.yml
vendored
|
|
@ -2,6 +2,12 @@ name: Build Test Docker Image manually
|
|||
|
||||
on:
|
||||
workflow_dispatch:
|
||||
inputs:
|
||||
_notes_:
|
||||
description: '⚠️ Please create a new git tag before building the docker image.'
|
||||
required: false
|
||||
type: boolean
|
||||
default: false
|
||||
|
||||
permissions:
|
||||
contents: read
|
||||
|
|
|
|||
6
.github/workflows/docker-build-offline.yml
vendored
6
.github/workflows/docker-build-offline.yml
vendored
|
|
@ -2,6 +2,12 @@ name: Build Offline Docker Image
|
|||
|
||||
on:
|
||||
workflow_dispatch:
|
||||
inputs:
|
||||
_notes_:
|
||||
description: '⚠️ Create offline Docker images only after non-trivial version releases.'
|
||||
required: false
|
||||
type: boolean
|
||||
default: false
|
||||
|
||||
permissions:
|
||||
contents: read
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue