# fastlane actions
This page contains a list of all built-in fastlane actions and their available options.
To get the most up-to-date information from the command line on your current version you can also run
```sh
fastlane actions # list all available fastlane actions
fastlane action [action_name] # more information for a specific action
```
You can import another `Fastfile` by using the `import` action. This is useful if you have shared lanes across multiple apps and you want to store a `Fastfile` in a separate folder. The path must be relative to the `Fastfile` this is called from.
```ruby
import './path/to/other/Fastfile'
```
For _fastlane_ plugins, check out the [available plugins](https://docs.fastlane.tools/plugins/available-plugins) page.
<%- @categories.each do |category, actions| -%>
- [<%= category %>](#<%= category.gsub(" ", "-").downcase %>)
<%- end -%>
- [Plugins](https://docs.fastlane.tools/plugins/available-plugins)
<%- @categories.each do |category, actions| %>
# <%= category %>
<%- actions.sort.to_h.each do |_number_of_launches, action| -%>
### <%= action.action_name %>
<%= action.description %>
<%= "> #{action.deprecated_notes.gsub("\n\n", "\n")}" unless action.deprecated_notes.to_s.empty? %>
<%= "> #{action.details.gsub("\n\n", "\n")}" unless action.details.to_s.empty? %>
<%= action.action_name %> |
-----|----
Supported platforms | <%= [:ios, :android, :mac].find_all { |a| action.is_supported?(a) }.join(", ") %>
Author | @<%= Array(action.author || action.authors).join(", @") %>
<%- unless action.return_value.to_s.empty? -%>
Returns | <%= action.return_value %>
<%- end -%>
<% if (action.example_code || []).count > 0 %>
<%= action.example_code.count %> Example<%= (action.example_code.count > 1) ? "s" : "" %>
<% action.example_code.each do |current_sample| %>
```ruby
<%= current_sample.gsub(" ", "") %>
```
<% end %><%# End of action.example_code... %>
<% end %><%# End of if %>
<% if action.available_options && action.available_options.first.kind_of?(FastlaneCore::ConfigItem) %>
Parameters
Key | Description
----|------------
<%- (action.available_options || []).each do |config_item| -%>
<%- next unless config_item.kind_of?(FastlaneCore::ConfigItem) -%>
<%- next if config_item.description.to_s.length == 0 -%>
`<%= config_item.key %>` | <%= config_item.description %>
<%- end %>
<% end %><%# End of action.available_options... %>
<%- end %><%# End of actions.sort... %>
<%- end %><%# End of categories.each %>