We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5246b18 commit e04510fCopy full SHA for e04510f
Taskfile.yaml
@@ -4,15 +4,34 @@ version: "3"
4
5
dotenv: [".envrc"]
6
7
+vars:
8
+ CURRENT_DATE:
9
+ sh: date +"%Y-%m-%dT%H:%M:%S%Z"
10
+
11
tasks:
12
+ default:
13
+ cmds:
14
+ - git add .
15
+ - git commit -m "{{.CURRENT_DATE}}"
16
+ - git push
17
+ silent: true
18
19
+ hog:
20
21
+ - trufflehog git file://. --since-commit HEAD --only-verified --fail
22
23
pre:
24
cmds:
25
- pre-commit run -a
26
27
push:
28
29
- git push
30
- git tag -s {{.CLI_ARGS}} -m "{{.CLI_ARGS}}"
31
- git push --tags
- hog:
32
33
+ tag:
34
- - trufflehog git file://. --since-commit HEAD --only-verified --fail
35
36
+ - git tag -s {{.CLI_ARGS}} -m "{{.CLI_ARGS}}"
37
+ - git push --tags
0 commit comments