We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a9a954c commit 17b3df1Copy full SHA for 17b3df1
1 file changed
.github/workflows/deploy.yml
@@ -6,6 +6,12 @@ on:
6
paths-ignore:
7
- '.github/**'
8
workflow_dispatch:
9
+ inputs:
10
+ confirm_manual_deploy:
11
+ description: 'Are you *sure* a manual deployment is absolutely necessary?'
12
+ required: true
13
+ type: boolean
14
+ default: false
15
16
permissions:
17
contents: write
@@ -19,6 +25,7 @@ concurrency:
19
25
jobs:
20
26
thumbnails:
21
27
runs-on: ubuntu-latest
28
+ if: github.event_name != 'workflow_dispatch' || inputs.confirm_manual_deploy
22
29
23
30
steps:
24
31
- uses: actions/checkout@v4
0 commit comments