1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
# Branch (required)
# Regex to choose which branch(-es) this block applies to, some examples
# ['will/.*'] applies to branches like`will/release-workflows`
# ['^\d+/.*'] applies to branches starting with numbers `123/feat-some-issue`
# [main] applies only to the branch called `main`
# ['*'] is the reserved default that applies if no block of higher precedence is present.
# ['*'] It also applies if current folder is not tracked under source control
[]
# Workspace (optional, default=null)
# in this context would resolve to the user's default workspace
# https://support.toggl.com/en/articles/2452474-introduction-to-workspaces#switching-and-creating-workspaces
# workspace = "My Workspace"
# Description (optional, default="")
# Accepts any string template with our macros in them
= "🔨 {{current_dir}}"
# Project (optional, default=No project)
# Accepts any string template with our macros in them
= "{{current_dir}}"
# Task (optional, default=No task)
# task = "Some task"
# Tags (optional, default=None)
= ["code"]
# Billable (optional, default=false)
= true
# This block will be applied to all branches that match the regex will/.*
# Branches are matched top-down, so this block will be applied to all branches
# that match the regex will/.* and no other block will be applied to them.
# The exception is the default block, which is applied to all branches that
# don't match any other block.
# ['will/.*']
# description = "Review {{branch}}"
# project = "{{base_dir}}"
# tags = ["review"]
# billable = false