We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e2c1c80 commit 72115a0Copy full SHA for 72115a0
.github/actions/post-maestro-screenshot/action.yml
@@ -14,7 +14,7 @@ inputs:
14
default: 'unknown'
15
imgbb-api-key:
16
description: 'ImgBB API key for image hosting'
17
- required: true
+ required: false
18
19
runs:
20
using: 'composite'
@@ -69,7 +69,7 @@ runs:
69
fi
70
71
- name: Upload screenshot to ImgBB
72
- if: steps.check-screenshot.outputs.exists == 'true' && github.event_name == 'pull_request'
+ if: steps.check-screenshot.outputs.exists == 'true' && github.event_name == 'pull_request' && inputs.imgbb-api-key != ''
73
id: upload-screenshot
74
uses: McCzarny/upload-image@v2.0.0
75
with:
0 commit comments