Fieldsets
It is possible to group actions together in a "group", which is not a directory, but is called a "fieldset". This is an example of a fieldset that contains two Folders.
Fieldsets are defined under a Dashboards in your config.yaml.
config.yamldashboards:
  - title: My First Dashboard
    contents:
      - title: Fieldset 1
        type: fieldset
        contents: []
      - title: Fieldset 2
        type: fieldset
        contents: []
Fieldsets are also generated for you when you use Entities.
config.yamldashboards:
  - title: My First Dashboard
    contents:
      - title: Fieldset 1
        type: fieldset
        entity: server
        contents:
          - title: Start {{ server.Name }}
          - title: Shutdown {{ server.Name }}