Skip to content

Commit

Permalink
fix: default action values
Browse files Browse the repository at this point in the history
  • Loading branch information
pandatix committed Jun 1, 2024
1 parent dc0b1f0 commit 6184bab
Showing 1 changed file with 8 additions and 1 deletion.
9 changes: 8 additions & 1 deletion action.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,7 @@ inputs:
description: 'The frontend small icon. Provide a path to a locally-accessible file.'
theme_name:
description: 'The frontend theme name.'
default: 'core'
theme_color:
description: 'The frontend theme color.'
theme_header:
Expand All @@ -38,6 +39,7 @@ inputs:
description: 'The domain whitelist (a list separated by colons) to allow users to have email addresses from.'
accounts_verify_emails:
description: 'Whether to verify emails once a user register or not.'
default: 'false'
accounts_team_creation:
description: 'Whether to allow team creation by players or not.'
accounts_team_size:
Expand All @@ -63,12 +65,16 @@ inputs:
# Settings
settings_challenge_visibility:
description: 'The visibility for the challenges. Please refer to CTFd documentation (https://docs.ctfd.io/docs/settings/visibility-settings/).'
default: 'public'
settings_account_visibility:
description: 'The visibility for the accounts. Please refer to CTFd documentation (https://docs.ctfd.io/docs/settings/visibility-settings/).'
default: 'public'
settings_score_visibility:
description: 'The visibility for the scoreboard. Please refer to CTFd documentation (https://docs.ctfd.io/docs/settings/visibility-settings/).'
default: 'public'
settings_registration_visibility:
description: 'The visibility for the registration. Please refer to CTFd documentation (https://docs.ctfd.io/docs/settings/visibility-settings/).'
default: 'public'
settings_paused:
description: 'Whether the CTFd is paused or not.'
# Security
Expand Down Expand Up @@ -135,6 +141,7 @@ inputs:
# UserMode
mode:
description: 'The mode of your CTFd, either users or teams.'
default: 'users'
# Admin
admin_name:
description: 'The administrator name.'
Expand All @@ -145,7 +152,7 @@ inputs:

runs:
using: 'docker'
image: 'docker://ctferio/ctfd-setup:v1.1.8'
image: 'docker://ctferio/ctfd-setup:v1.1.9'
env:
FILE: ${{ inputs.file }}
URL: ${{ inputs.url }}
Expand Down

0 comments on commit 6184bab

Please sign in to comment.