You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This is effectively a noop right now, since the api-key input is
required. This is in preparation for merging #24 where you can specify
an api-key or oauth credentials.
Signed-off-by: Will Norris <will@tailscale.com>
Copy file name to clipboardExpand all lines: action.yml
+6Lines changed: 6 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -17,6 +17,12 @@ inputs:
17
17
runs:
18
18
using: "composite"
19
19
steps:
20
+
- name: Check Auth Info Empty
21
+
if: ${{ inputs.api-key == '' }}
22
+
shell: bash
23
+
run: |
24
+
echo "::error title=⛔ error hint::API Key empty. Maybe you need to populate it in the Secrets for your workflow, see more in https://docs.github.com/en/actions/security-guides/encrypted-secrets"
0 commit comments