We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Add ability to change workflow settings through Alfred interface
This action would require several events:
ShowSettingsItems
ShowSettingOptions
AddConfigurationValueToSet
RemoveConfigurationValueFromSet
RemoveConfigurationValue
SetConfigurationValue
menu:settings
menu:setting-options <settings-menu-item>
settings:set <path> <value>
settings:add <path> <value>
settings:remove <path>
settings:remove-from-set <path> <key>
For each item:
settingPath
settingValue
settingAction
set
add
remove
nextAction
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Add ability to change workflow settings through Alfred interface
Events
This action would require several events:
Used to show menu
ShowSettingsItems
ShowSettingOptions
Used to manipulate with settings
AddConfigurationValueToSet
RemoveConfigurationValueFromSet
RemoveConfigurationValue
SetConfigurationValue
CLI Commands
menu:settings
- prints all settingsmenu:setting-options <settings-menu-item>
- prints options for chosen configurationsettings:set <path> <value>
- sets value to the configurationsettings:add <path> <value>
- adds value to the set of values in the configurationsettings:remove <path>
- removes value from the configurationsettings:remove-from-set <path> <key>
- removes value from the configurationMenu items
For each item:
ShowSettingsItems
Environment variables
settingPath
- a path of the settingShowSettingOptions
settingPath
- path of the settingsettingValue
- chosen valuesettingAction
- eitherset
,add
orremove
action. If ommited,add
used by defaultImprovements
nextAction
environment variableThe text was updated successfully, but these errors were encountered: