-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathTaskfile.yml
More file actions
27 lines (27 loc) · 728 Bytes
/
Copy pathTaskfile.yml
File metadata and controls
27 lines (27 loc) · 728 Bytes
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
# yaml-language-server: $schema=https://taskfile.dev/schema.json
version: '3'
vars:
GREETING: "Welcome to Local Development Environment (LDE)"
tasks:
default:
cmds:
- echo "{{.GREETING}}"
- task --list
silent: false
notify:
internal: true
silent: true
desc: "Notification sound"
cmd: afplay /System/Library/Sounds/Glass.aiff
daily:
desc: "Daily verification tasks"
cmd: echo "Running daily tasks..."
weekly:
desc: "Weekly verification tasks"
cmd: echo "Running weekly tasks..."
monthly:
desc: "Monthly verification tasks"
cmd: echo "Running monthly tasks..."
quarterly:
desc: "Quarterly verification tasks"
cmd: echo "Running quarterly tasks..."