Add 416 files
Browse filesThis view is limited to 50 files because it contains too many changes.
See raw diff
- .eslintrc.yaml +30 -0
- .golangci.yml +36 -0
- .hadolint.yaml +4 -0
- .markdownlint.yaml +10 -0
- .remarkrc.yaml +4 -0
- .yamllint.yaml +10 -0
- 0Lthk.yaml +4 -0
- 0NNO5.yaml +4 -0
- 0W15X.yaml +22 -0
- 2023-12-04-21-26-10.764.yaml +28 -0
- 2023-12-04-21-26-11.510.yaml +14 -0
- 2023-12-04-21-30-15.805.yaml +28 -0
- 2023-12-04-21-30-40.646.yaml +14 -0
- 2023-12-04-22-25-28.642.yaml +14 -0
- 2023-12-04-22-25-28.654.yaml +28 -0
- 2023-12-04-22-25-37.415.yaml +18 -0
- 2023-12-04-22-25-40.554.yaml +14 -0
- 2023-12-04-22-30-40.981.yaml +14 -0
- 2023-12-04-22-30-49.910.yaml +18 -0
- 2023-12-04-23-30-48.491.yaml +18 -0
- 2023-12-05-00-30-48.217.yaml +18 -0
- 2023-12-05-01-30-48.513.yaml +18 -0
- 2023-12-05-02-30-57.443.yaml +18 -0
- 2023-12-05-03-30-48.329.yaml +18 -0
- 2023-12-05-04-30-47.610.yaml +18 -0
- 2023-12-05-05-30-46.721.yaml +18 -0
- 2023-12-05-06-31-01.436.yaml +18 -0
- 2023-12-05-07-31-02.38.yaml +18 -0
- 2023-12-05-08-31-00.197.yaml +18 -0
- 2023-12-05-09-30-58.765.yaml +32 -0
- 2023-12-05-10-31-00.254.yaml +32 -0
- 2023-12-05-11-31-00.443.yaml +32 -0
- 2023-12-05-12-31-02.486.yaml +32 -0
- 2023-12-05-13-31-01.86.yaml +32 -0
- 2023-12-05-14-31-02.15.yaml +32 -0
- 2023-12-05-15-31-00.836.yaml +32 -0
- 2023-12-05-16-30-46.593.yaml +32 -0
- 2023-12-05-17-30-47.77.yaml +32 -0
- 2023-12-05-18-30-46.626.yaml +32 -0
- 2023-12-05-19-30-47.618.yaml +32 -0
- 2023-12-05-20-30-46.586.yaml +32 -0
- 2023-12-05-21-30-40.649.yaml +28 -0
- 2023-12-05-21-30-48.275.yaml +32 -0
- 2023-12-05-21-35-54.695.yaml +14 -0
- 2023-12-05-22-30-40.703.yaml +14 -0
- 2023-12-05-22-30-46.946.yaml +18 -0
- 2023-12-05-23-30-48.22.yaml +18 -0
- 2023-12-06-00-30-49.211.yaml +32 -0
- 2023-12-06-01-30-46.813.yaml +32 -0
- 2023-12-06-02-30-46.675.yaml +32 -0
.eslintrc.yaml
ADDED
@@ -0,0 +1,30 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
root: true
|
2 |
+
|
3 |
+
extends:
|
4 |
+
# Order matters, later configs purposefully override settings from earlier configs
|
5 |
+
- eslint:recommended
|
6 |
+
- plugin:@typescript-eslint/recommended
|
7 |
+
- plugin:import/recommended
|
8 |
+
- plugin:import/typescript
|
9 |
+
- plugin:node/recommended
|
10 |
+
- prettier
|
11 |
+
|
12 |
+
parser: "@typescript-eslint/parser"
|
13 |
+
|
14 |
+
parserOptions:
|
15 |
+
ecmaFeatures:
|
16 |
+
jsx: true
|
17 |
+
ecmaVersion: 12
|
18 |
+
# All @typescript-eslint type related checks are disabled if you don't point to your tsconfig, but if we do eslint takes minutes for each file versus a second
|
19 |
+
# TODO(dapirian): figure out how to re-enable this without making eslint take forever
|
20 |
+
# project: ./tsconfig.json
|
21 |
+
|
22 |
+
plugins:
|
23 |
+
- "@typescript-eslint"
|
24 |
+
- import
|
25 |
+
|
26 |
+
settings:
|
27 |
+
import/parsers:
|
28 |
+
"@typescript-eslint/parser":
|
29 |
+
- .ts
|
30 |
+
- .tsx
|
.golangci.yml
ADDED
@@ -0,0 +1,36 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
linters-settings:
|
2 |
+
errcheck:
|
3 |
+
check-type-assertions: true
|
4 |
+
linters:
|
5 |
+
enable:
|
6 |
+
- govet
|
7 |
+
- asciicheck
|
8 |
+
- bodyclose
|
9 |
+
- deadcode
|
10 |
+
- depguard
|
11 |
+
- dogsled
|
12 |
+
- errcheck
|
13 |
+
- exportloopref
|
14 |
+
- gochecknoinits
|
15 |
+
- godot
|
16 |
+
- gofmt
|
17 |
+
- goheader
|
18 |
+
- goimports
|
19 |
+
- goprintffuncname
|
20 |
+
- gosimple
|
21 |
+
- gosec
|
22 |
+
- govet
|
23 |
+
- ineffassign
|
24 |
+
- misspell
|
25 |
+
- nakedret
|
26 |
+
- nolintlint
|
27 |
+
- rowserrcheck
|
28 |
+
- scopelint
|
29 |
+
- staticcheck
|
30 |
+
- structcheck
|
31 |
+
- stylecheck
|
32 |
+
- typecheck
|
33 |
+
- unconvert
|
34 |
+
- unused
|
35 |
+
- varcheck
|
36 |
+
- whitespace
|
.hadolint.yaml
ADDED
@@ -0,0 +1,4 @@
|
|
|
|
|
|
|
|
|
|
|
1 |
+
# Following source doesn't work in most setups
|
2 |
+
ignored:
|
3 |
+
- SC1090
|
4 |
+
- SC1091
|
.markdownlint.yaml
ADDED
@@ -0,0 +1,10 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
# Autoformatter friendly markdownlint config (all formatting rules disabled)
|
2 |
+
default: true
|
3 |
+
blank_lines: false
|
4 |
+
bullet: false
|
5 |
+
html: false
|
6 |
+
indentation: false
|
7 |
+
line_length: false
|
8 |
+
spaces: false
|
9 |
+
url: false
|
10 |
+
whitespace: false
|
.remarkrc.yaml
ADDED
@@ -0,0 +1,4 @@
|
|
|
|
|
|
|
|
|
|
|
1 |
+
plugins:
|
2 |
+
remark-preset-lint-consistent: true
|
3 |
+
remark-preset-lint-recommended: true
|
4 |
+
remark-lint-list-item-indent: true
|
.yamllint.yaml
ADDED
@@ -0,0 +1,10 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
rules:
|
2 |
+
quoted-strings:
|
3 |
+
required: only-when-needed
|
4 |
+
extra-allowed: ["{|}"]
|
5 |
+
empty-values:
|
6 |
+
forbid-in-block-mappings: true
|
7 |
+
forbid-in-flow-mappings: true
|
8 |
+
key-duplicates: {}
|
9 |
+
octal-values:
|
10 |
+
forbid-implicit-octal: true
|
0Lthk.yaml
ADDED
@@ -0,0 +1,4 @@
|
|
|
|
|
|
|
|
|
|
|
1 |
+
trunk_cli_version: 1.17.2
|
2 |
+
title: "Error while executing: Installing hermetic tool trufflehog v3.63.2-rc0"
|
3 |
+
report:
|
4 |
+
- HTTP 404 'https://github.com/trufflesecurity/trufflehog/releases/download/v3.63.2-rc0/trufflehog_3.63.2-rc0_windows_amd64.tar.gz'
|
0NNO5.yaml
ADDED
@@ -0,0 +1,4 @@
|
|
|
|
|
|
|
|
|
|
|
1 |
+
trunk_cli_version: 1.17.2
|
2 |
+
title: "Error while executing: Installing hermetic tool trufflehog v3.63.2-rc0"
|
3 |
+
report:
|
4 |
+
- HTTP 404 'https://github.com/trufflesecurity/trufflehog/releases/download/v3.63.2-rc0/trufflehog_3.63.2-rc0_windows_amd64.tar.gz'
|
0W15X.yaml
ADDED
@@ -0,0 +1,22 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
trunk_cli_version: 1.17.2
|
2 |
+
title: Check [[on-demand] [prettier:format:script.js:HEAD]]
|
3 |
+
report:
|
4 |
+
- linter:
|
5 |
+
command: |
|
6 |
+
'C:\Users\ekitt\AppData\Local\trunk\tools\git-bash\2.40.1-da0c3e1526d36e62bf43d06ec46c5052/bin\sh.exe' 'C:\Users\ekitt\AppData\Local\trunk\tools\prettier\3.1.0-2115d831e02167aaad1518c9d39203db/node_modules/.bin\prettier' -w script.js
|
7 |
+
stdin_path: (none)
|
8 |
+
run_from: C:\Users\ekitt\AppData\Local\Temp\trunk\dqzu16q\kvohvt1\
|
9 |
+
timeout: 10m
|
10 |
+
rerun: (cd C:\Users\ekitt\AppData\Local\Temp\trunk\dqzu16q\kvohvt1\; env -i HOME= 'NODE_PATH=C:\Users\ekitt\AppData\Local\trunk\tools\prettier\3.1.0-2115d831e02167aaad1518c9d39203db/node_modules' 'PATH=C:\Users\ekitt\AppData\Local\trunk\tools\git-bash\2.40.1-da0c3e1526d36e62bf43d06ec46c5052/bin;C:\Users\ekitt\AppData\Local\trunk\tools\git-bash\2.40.1-da0c3e1526d36e62bf43d06ec46c5052/usr/bin;C:\Users\ekitt\AppData\Local\trunk\tools\prettier\3.1.0-2115d831e02167aaad1518c9d39203db/node_modules/.bin;C:\Users\ekitt\AppData\Local\trunk\tools\node\18.12.1-ee91e409de31a08a96aaff7f742f83b4/bin;C:\Users\ekitt\AppData\Local\trunk\tools\node\18.12.1-ee91e409de31a08a96aaff7f742f83b4;C:\Users\ekitt\AppData\Local\trunk\tools\git-bash\2.40.1-da0c3e1526d36e62bf43d06ec46c5052/bin;C:\Users\ekitt\AppData\Local\trunk\tools\git-bash\2.40.1-da0c3e1526d36e62bf43d06ec46c5052/usr/bin;C:\Program Files (x86)\Intel\iCLS Client\;C:\Program Files\Intel\iCLS Client\;C:\WINDOWS\system32;C:\WINDOWS;C:\WINDOWS\System32\Wbem;C:\WINDOWS\System32\WindowsPowerShell\v1.0\;C:\Program Files (x86)\Intel\Intel(R) Management Engine Components\DAL;C:\Program Files\Intel\Intel(R) Management Engine Components\DAL;C:\Program Files (x86)\Intel\Intel(R) Management Engine Components\IPT;C:\Program Files\Intel\Intel(R) Management Engine Components\IPT;C:\WINDOWS\System32\OpenSSH\;C:\Program Files\Git\cmd;C:\Users\ekitt\AppData\Local\Microsoft\WindowsApps;C:\Users\ekitt\AppData\Local\Programs\Microsoft VS Code\bin;C:\Users\ekitt\AppData\Local\GitHubDesktop\bin' 'C:\Users\ekitt\AppData\Local\trunk\tools\git-bash\2.40.1-da0c3e1526d36e62bf43d06ec46c5052/bin\sh.exe' 'C:\Users\ekitt\AppData\Local\trunk\tools\prettier\3.1.0-2115d831e02167aaad1518c9d39203db/node_modules/.bin\prettier' -w script.js)
|
11 |
+
affects_cache:
|
12 |
+
- package.json
|
13 |
+
direct_configs:
|
14 |
+
[]
|
15 |
+
exit_status: exited
|
16 |
+
exit_code: 0
|
17 |
+
stdout: |
|
18 |
+
script.js 126ms
|
19 |
+
|
20 |
+
stderr: (none)
|
21 |
+
parser: |
|
22 |
+
(none)
|
2023-12-04-21-26-10.764.yaml
ADDED
@@ -0,0 +1,28 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
action_id: trunk-share-with-everyone
|
2 |
+
date: 2023-12-04 21:26:10
|
3 |
+
run: trunk config share --notify --allow-daemon-start=false
|
4 |
+
run_from: ""
|
5 |
+
trigger: schedule 24h
|
6 |
+
result:
|
7 |
+
exit_code: 0
|
8 |
+
out: "notifications:\r\n - commands:\r\n - run: trunk config share\r\n title: Share trunk config\r\n id: trunk-share-with-everyone\r\n message: Remove trunk from your local git ignores\r\n priority: low\r\n rendered: \"\\x1b[90mRun \\x1b[0m\\x1b[96mtrunk config share\\x1b[0m\\x1b[90m to allow committing your trunk config for your teammates to use\\n\\x1b[0m\"\r\n title: Share trunk config\r\n"
|
9 |
+
err: ""
|
10 |
+
timestamp: 1701725170
|
11 |
+
full_timestamp:
|
12 |
+
nanos: 764557000
|
13 |
+
seconds: 1701725170
|
14 |
+
trunk_version: 1.17.2
|
15 |
+
action_output:
|
16 |
+
notifications:
|
17 |
+
- commands:
|
18 |
+
- run: trunk config share
|
19 |
+
title: Share trunk config
|
20 |
+
full_timestamp:
|
21 |
+
nanos: 764557000
|
22 |
+
seconds: 1701725170
|
23 |
+
id: trunk-share-with-everyone
|
24 |
+
message: Remove trunk from your local git ignores
|
25 |
+
priority: low
|
26 |
+
rendered: "\x1b[90mRun \x1b[0m\x1b[96mtrunk config share\x1b[0m\x1b[90m to allow committing your trunk config for your teammates to use\n\x1b[0m"
|
27 |
+
timestamp: 1701725170
|
28 |
+
title: Share trunk config
|
2023-12-04-21-26-11.510.yaml
ADDED
@@ -0,0 +1,14 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
action_id: trunk-cache-prune
|
2 |
+
date: 2023-12-04 21:26:11
|
3 |
+
run: trunk cache prune --allow-daemon-start=false
|
4 |
+
run_from: ""
|
5 |
+
trigger: schedule 24h
|
6 |
+
result:
|
7 |
+
exit_code: 0
|
8 |
+
out: "\x1b[1m\x1b[30m\x1b[107m PRUNE \x1b[0m\r\n\r\n \x1b[1m\x1b[4mPath\x1b[22m\x1b[24m \x1b[1m\x1b[4mFiles Removed\x1b[22m\x1b[24m \x1b[1m\x1b[4mBytes Removed\x1b[22m\x1b[24m \x1b[1m\x1b[4mFiles Remaining\x1b[22m\x1b[24m \x1b[1m\x1b[4mBytes Remaining\x1b[22m\x1b[24m\r\n C:\\Users\\ekitt 0 0 B 0 0 B \r\n \\AppData\\Local \r\n \\trunk\\repos \r\n \\ee364455536c0 \r\n cf69ad62d21f16 \r\n 2c920\\out \r\n C:\\Users\\ekitt 0 0 B 0 0 B \r\n \\trunk \r\n\r\n\x1b[1m\x1b[92m✔ Removed 0 files totaling 0 B\x1b[0m\r\n"
|
9 |
+
err: ""
|
10 |
+
timestamp: 1701725171
|
11 |
+
full_timestamp:
|
12 |
+
nanos: 510573000
|
13 |
+
seconds: 1701725171
|
14 |
+
trunk_version: 1.17.2
|
2023-12-04-21-30-15.805.yaml
ADDED
@@ -0,0 +1,28 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
action_id: trunk-share-with-everyone
|
2 |
+
date: 2023-12-04 21:30:15
|
3 |
+
run: trunk config share --notify --allow-daemon-start=false
|
4 |
+
run_from: ""
|
5 |
+
trigger: schedule 24h
|
6 |
+
result:
|
7 |
+
exit_code: 0
|
8 |
+
out: "notifications:\r\n - commands:\r\n - run: trunk config share\r\n title: Share trunk config\r\n id: trunk-share-with-everyone\r\n message: Remove trunk from your local git ignores\r\n priority: low\r\n rendered: \"\\x1b[90mRun \\x1b[0m\\x1b[96mtrunk config share\\x1b[0m\\x1b[90m to allow committing your trunk config for your teammates to use\\n\\x1b[0m\"\r\n title: Share trunk config\r\n"
|
9 |
+
err: ""
|
10 |
+
timestamp: 1701725415
|
11 |
+
full_timestamp:
|
12 |
+
nanos: 805361000
|
13 |
+
seconds: 1701725415
|
14 |
+
trunk_version: 1.17.2
|
15 |
+
action_output:
|
16 |
+
notifications:
|
17 |
+
- commands:
|
18 |
+
- run: trunk config share
|
19 |
+
title: Share trunk config
|
20 |
+
full_timestamp:
|
21 |
+
nanos: 805361000
|
22 |
+
seconds: 1701725415
|
23 |
+
id: trunk-share-with-everyone
|
24 |
+
message: Remove trunk from your local git ignores
|
25 |
+
priority: low
|
26 |
+
rendered: "\x1b[90mRun \x1b[0m\x1b[96mtrunk config share\x1b[0m\x1b[90m to allow committing your trunk config for your teammates to use\n\x1b[0m"
|
27 |
+
timestamp: 1701725415
|
28 |
+
title: Share trunk config
|
2023-12-04-21-30-40.646.yaml
ADDED
@@ -0,0 +1,14 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
action_id: trunk-single-player-auto-on-upgrade
|
2 |
+
date: 2023-12-04 21:30:40
|
3 |
+
run: trunk on-upgrade --single-player-only -n --no-progress --allow-daemon-start=false --print-summary --scope=check,plugins,runtimes,tools
|
4 |
+
run_from: ""
|
5 |
+
trigger: schedule 24h+5m
|
6 |
+
result:
|
7 |
+
exit_code: 0
|
8 |
+
out: "\x1b[1m\x1b[90m\r\n 3 actions were disabled\r\n\r\n\x1b[0m\x1b[90m trunk-announce \r\n\x1b[0m\x1b[90m trunk-check-pre-push \r\n\x1b[0m\x1b[90m trunk-fmt-pre-commit \r\n\x1b[0m\r\n\r\n\x1b[92mAlready up to date\r\n\x1b[0m"
|
9 |
+
err: ""
|
10 |
+
timestamp: 1701725440
|
11 |
+
full_timestamp:
|
12 |
+
nanos: 646081000
|
13 |
+
seconds: 1701725440
|
14 |
+
trunk_version: 1.17.2
|
2023-12-04-22-25-28.642.yaml
ADDED
@@ -0,0 +1,14 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
action_id: trunk-cache-prune
|
2 |
+
date: 2023-12-04 22:25:28
|
3 |
+
run: trunk cache prune --allow-daemon-start=false
|
4 |
+
run_from: ""
|
5 |
+
trigger: schedule 24h
|
6 |
+
result:
|
7 |
+
exit_code: 0
|
8 |
+
out: "\x1b[1m\x1b[30m\x1b[107m PRUNE \x1b[0m\r\n\r\n \x1b[1m\x1b[4mPath\x1b[22m\x1b[24m \x1b[1m\x1b[4mFiles Removed\x1b[22m\x1b[24m \x1b[1m\x1b[4mBytes Removed\x1b[22m\x1b[24m \x1b[1m\x1b[4mFiles Remaining\x1b[22m\x1b[24m \x1b[1m\x1b[4mBytes Remaining\x1b[22m\x1b[24m\r\n C:\\Users\\ekitt 0 0 B 0 0 B \r\n \\AppData\\Local \r\n \\trunk\\repos \r\n \\ee364455536c0 \r\n cf69ad62d21f16 \r\n 2c920\\out \r\n C:\\Users\\ekitt 0 0 B 0 0 B \r\n \\trunk \r\n\r\n\x1b[1m\x1b[92m✔ Removed 0 files totaling 0 B\x1b[0m\r\n"
|
9 |
+
err: ""
|
10 |
+
timestamp: 1701728728
|
11 |
+
full_timestamp:
|
12 |
+
nanos: 642060000
|
13 |
+
seconds: 1701728728
|
14 |
+
trunk_version: 1.17.2
|
2023-12-04-22-25-28.654.yaml
ADDED
@@ -0,0 +1,28 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
action_id: trunk-share-with-everyone
|
2 |
+
date: 2023-12-04 22:25:28
|
3 |
+
run: trunk config share --notify --allow-daemon-start=false
|
4 |
+
run_from: ""
|
5 |
+
trigger: schedule 24h
|
6 |
+
result:
|
7 |
+
exit_code: 0
|
8 |
+
out: "notifications:\r\n - commands:\r\n - run: trunk config share\r\n title: Share trunk config\r\n id: trunk-share-with-everyone\r\n message: Remove trunk from your local git ignores\r\n priority: low\r\n rendered: \"\\x1b[90mRun \\x1b[0m\\x1b[96mtrunk config share\\x1b[0m\\x1b[90m to allow committing your trunk config for your teammates to use\\n\\x1b[0m\"\r\n title: Share trunk config\r\n"
|
9 |
+
err: ""
|
10 |
+
timestamp: 1701728728
|
11 |
+
full_timestamp:
|
12 |
+
nanos: 654910000
|
13 |
+
seconds: 1701728728
|
14 |
+
trunk_version: 1.17.2
|
15 |
+
action_output:
|
16 |
+
notifications:
|
17 |
+
- commands:
|
18 |
+
- run: trunk config share
|
19 |
+
title: Share trunk config
|
20 |
+
full_timestamp:
|
21 |
+
nanos: 654910000
|
22 |
+
seconds: 1701728728
|
23 |
+
id: trunk-share-with-everyone
|
24 |
+
message: Remove trunk from your local git ignores
|
25 |
+
priority: low
|
26 |
+
rendered: "\x1b[90mRun \x1b[0m\x1b[96mtrunk config share\x1b[0m\x1b[90m to allow committing your trunk config for your teammates to use\n\x1b[0m"
|
27 |
+
timestamp: 1701728728
|
28 |
+
title: Share trunk config
|
2023-12-04-22-25-37.415.yaml
ADDED
@@ -0,0 +1,18 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
action_id: trunk-upgrade-available
|
2 |
+
date: 2023-12-04 22:25:37
|
3 |
+
run: trunk upgrade --notify --allow-daemon-start=false
|
4 |
+
run_from: ""
|
5 |
+
trigger: schedule 1h
|
6 |
+
result:
|
7 |
+
exit_code: 0
|
8 |
+
out: "notifications_to_delete:\r\n - trunk-check-upgrade\r\n - trunk-upgrade\r\n"
|
9 |
+
err: ""
|
10 |
+
timestamp: 1701728737
|
11 |
+
full_timestamp:
|
12 |
+
nanos: 415054000
|
13 |
+
seconds: 1701728737
|
14 |
+
trunk_version: 1.17.2
|
15 |
+
action_output:
|
16 |
+
notifications_to_delete:
|
17 |
+
- trunk-check-upgrade
|
18 |
+
- trunk-upgrade
|
2023-12-04-22-25-40.554.yaml
ADDED
@@ -0,0 +1,14 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
action_id: trunk-single-player-auto-on-upgrade
|
2 |
+
date: 2023-12-04 22:25:40
|
3 |
+
run: trunk on-upgrade --single-player-only -n --no-progress --allow-daemon-start=false --print-summary --scope=check,plugins,runtimes,tools
|
4 |
+
run_from: ""
|
5 |
+
trigger: schedule 24h+5m
|
6 |
+
result:
|
7 |
+
exit_code: 0
|
8 |
+
out: "\r\n\x1b[92mAlready up to date\r\n\x1b[0m"
|
9 |
+
err: ""
|
10 |
+
timestamp: 1701728740
|
11 |
+
full_timestamp:
|
12 |
+
nanos: 554781000
|
13 |
+
seconds: 1701728740
|
14 |
+
trunk_version: 1.17.2
|
2023-12-04-22-30-40.981.yaml
ADDED
@@ -0,0 +1,14 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
action_id: trunk-single-player-auto-upgrade
|
2 |
+
date: 2023-12-04 22:30:40
|
3 |
+
run: trunk upgrade cli --single-player-only -n --no-progress --on-upgrade=false --allow-daemon-start=false
|
4 |
+
run_from: ""
|
5 |
+
trigger: schedule 24h+1h
|
6 |
+
result:
|
7 |
+
exit_code: 0
|
8 |
+
out: ""
|
9 |
+
err: ""
|
10 |
+
timestamp: 1701729040
|
11 |
+
full_timestamp:
|
12 |
+
nanos: 981829000
|
13 |
+
seconds: 1701729040
|
14 |
+
trunk_version: 1.17.2
|
2023-12-04-22-30-49.910.yaml
ADDED
@@ -0,0 +1,18 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
action_id: trunk-upgrade-available
|
2 |
+
date: 2023-12-04 22:30:49
|
3 |
+
run: trunk upgrade --notify --allow-daemon-start=false
|
4 |
+
run_from: ""
|
5 |
+
trigger: schedule 1h
|
6 |
+
result:
|
7 |
+
exit_code: 0
|
8 |
+
out: "notifications_to_delete:\r\n - trunk-check-upgrade\r\n - trunk-upgrade\r\n"
|
9 |
+
err: ""
|
10 |
+
timestamp: 1701729049
|
11 |
+
full_timestamp:
|
12 |
+
nanos: 910223000
|
13 |
+
seconds: 1701729049
|
14 |
+
trunk_version: 1.17.2
|
15 |
+
action_output:
|
16 |
+
notifications_to_delete:
|
17 |
+
- trunk-check-upgrade
|
18 |
+
- trunk-upgrade
|
2023-12-04-23-30-48.491.yaml
ADDED
@@ -0,0 +1,18 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
action_id: trunk-upgrade-available
|
2 |
+
date: 2023-12-04 23:30:48
|
3 |
+
run: trunk upgrade --notify --allow-daemon-start=false
|
4 |
+
run_from: ""
|
5 |
+
trigger: schedule 1h
|
6 |
+
result:
|
7 |
+
exit_code: 0
|
8 |
+
out: "notifications_to_delete:\r\n - trunk-check-upgrade\r\n - trunk-upgrade\r\n"
|
9 |
+
err: ""
|
10 |
+
timestamp: 1701732648
|
11 |
+
full_timestamp:
|
12 |
+
nanos: 491116000
|
13 |
+
seconds: 1701732648
|
14 |
+
trunk_version: 1.17.2
|
15 |
+
action_output:
|
16 |
+
notifications_to_delete:
|
17 |
+
- trunk-check-upgrade
|
18 |
+
- trunk-upgrade
|
2023-12-05-00-30-48.217.yaml
ADDED
@@ -0,0 +1,18 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
action_id: trunk-upgrade-available
|
2 |
+
date: 2023-12-05 00:30:48
|
3 |
+
run: trunk upgrade --notify --allow-daemon-start=false
|
4 |
+
run_from: ""
|
5 |
+
trigger: schedule 1h
|
6 |
+
result:
|
7 |
+
exit_code: 0
|
8 |
+
out: "notifications_to_delete:\r\n - trunk-check-upgrade\r\n - trunk-upgrade\r\n"
|
9 |
+
err: ""
|
10 |
+
timestamp: 1701736248
|
11 |
+
full_timestamp:
|
12 |
+
nanos: 217203000
|
13 |
+
seconds: 1701736248
|
14 |
+
trunk_version: 1.17.2
|
15 |
+
action_output:
|
16 |
+
notifications_to_delete:
|
17 |
+
- trunk-check-upgrade
|
18 |
+
- trunk-upgrade
|
2023-12-05-01-30-48.513.yaml
ADDED
@@ -0,0 +1,18 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
action_id: trunk-upgrade-available
|
2 |
+
date: 2023-12-05 01:30:48
|
3 |
+
run: trunk upgrade --notify --allow-daemon-start=false
|
4 |
+
run_from: ""
|
5 |
+
trigger: schedule 1h
|
6 |
+
result:
|
7 |
+
exit_code: 0
|
8 |
+
out: "notifications_to_delete:\r\n - trunk-check-upgrade\r\n - trunk-upgrade\r\n"
|
9 |
+
err: ""
|
10 |
+
timestamp: 1701739848
|
11 |
+
full_timestamp:
|
12 |
+
nanos: 513541000
|
13 |
+
seconds: 1701739848
|
14 |
+
trunk_version: 1.17.2
|
15 |
+
action_output:
|
16 |
+
notifications_to_delete:
|
17 |
+
- trunk-check-upgrade
|
18 |
+
- trunk-upgrade
|
2023-12-05-02-30-57.443.yaml
ADDED
@@ -0,0 +1,18 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
action_id: trunk-upgrade-available
|
2 |
+
date: 2023-12-05 02:30:57
|
3 |
+
run: trunk upgrade --notify --allow-daemon-start=false
|
4 |
+
run_from: ""
|
5 |
+
trigger: schedule 1h
|
6 |
+
result:
|
7 |
+
exit_code: 0
|
8 |
+
out: "notifications_to_delete:\r\n - trunk-check-upgrade\r\n - trunk-upgrade\r\n"
|
9 |
+
err: ""
|
10 |
+
timestamp: 1701743457
|
11 |
+
full_timestamp:
|
12 |
+
nanos: 443870000
|
13 |
+
seconds: 1701743457
|
14 |
+
trunk_version: 1.17.2
|
15 |
+
action_output:
|
16 |
+
notifications_to_delete:
|
17 |
+
- trunk-check-upgrade
|
18 |
+
- trunk-upgrade
|
2023-12-05-03-30-48.329.yaml
ADDED
@@ -0,0 +1,18 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
action_id: trunk-upgrade-available
|
2 |
+
date: 2023-12-05 03:30:48
|
3 |
+
run: trunk upgrade --notify --allow-daemon-start=false
|
4 |
+
run_from: ""
|
5 |
+
trigger: schedule 1h
|
6 |
+
result:
|
7 |
+
exit_code: 0
|
8 |
+
out: "notifications_to_delete:\r\n - trunk-check-upgrade\r\n - trunk-upgrade\r\n"
|
9 |
+
err: ""
|
10 |
+
timestamp: 1701747048
|
11 |
+
full_timestamp:
|
12 |
+
nanos: 329694000
|
13 |
+
seconds: 1701747048
|
14 |
+
trunk_version: 1.17.2
|
15 |
+
action_output:
|
16 |
+
notifications_to_delete:
|
17 |
+
- trunk-check-upgrade
|
18 |
+
- trunk-upgrade
|
2023-12-05-04-30-47.610.yaml
ADDED
@@ -0,0 +1,18 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
action_id: trunk-upgrade-available
|
2 |
+
date: 2023-12-05 04:30:47
|
3 |
+
run: trunk upgrade --notify --allow-daemon-start=false
|
4 |
+
run_from: ""
|
5 |
+
trigger: schedule 1h
|
6 |
+
result:
|
7 |
+
exit_code: 0
|
8 |
+
out: "notifications_to_delete:\r\n - trunk-check-upgrade\r\n - trunk-upgrade\r\n"
|
9 |
+
err: ""
|
10 |
+
timestamp: 1701750647
|
11 |
+
full_timestamp:
|
12 |
+
nanos: 610478000
|
13 |
+
seconds: 1701750647
|
14 |
+
trunk_version: 1.17.2
|
15 |
+
action_output:
|
16 |
+
notifications_to_delete:
|
17 |
+
- trunk-check-upgrade
|
18 |
+
- trunk-upgrade
|
2023-12-05-05-30-46.721.yaml
ADDED
@@ -0,0 +1,18 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
action_id: trunk-upgrade-available
|
2 |
+
date: 2023-12-05 05:30:46
|
3 |
+
run: trunk upgrade --notify --allow-daemon-start=false
|
4 |
+
run_from: ""
|
5 |
+
trigger: schedule 1h
|
6 |
+
result:
|
7 |
+
exit_code: 0
|
8 |
+
out: "notifications_to_delete:\r\n - trunk-check-upgrade\r\n - trunk-upgrade\r\n"
|
9 |
+
err: ""
|
10 |
+
timestamp: 1701754246
|
11 |
+
full_timestamp:
|
12 |
+
nanos: 721926000
|
13 |
+
seconds: 1701754246
|
14 |
+
trunk_version: 1.17.2
|
15 |
+
action_output:
|
16 |
+
notifications_to_delete:
|
17 |
+
- trunk-check-upgrade
|
18 |
+
- trunk-upgrade
|
2023-12-05-06-31-01.436.yaml
ADDED
@@ -0,0 +1,18 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
action_id: trunk-upgrade-available
|
2 |
+
date: 2023-12-05 06:31:01
|
3 |
+
run: trunk upgrade --notify --allow-daemon-start=false
|
4 |
+
run_from: ""
|
5 |
+
trigger: schedule 1h
|
6 |
+
result:
|
7 |
+
exit_code: 0
|
8 |
+
out: "notifications_to_delete:\r\n - trunk-check-upgrade\r\n - trunk-upgrade\r\n"
|
9 |
+
err: ""
|
10 |
+
timestamp: 1701757861
|
11 |
+
full_timestamp:
|
12 |
+
nanos: 436940000
|
13 |
+
seconds: 1701757861
|
14 |
+
trunk_version: 1.17.2
|
15 |
+
action_output:
|
16 |
+
notifications_to_delete:
|
17 |
+
- trunk-check-upgrade
|
18 |
+
- trunk-upgrade
|
2023-12-05-07-31-02.38.yaml
ADDED
@@ -0,0 +1,18 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
action_id: trunk-upgrade-available
|
2 |
+
date: 2023-12-05 07:31:02
|
3 |
+
run: trunk upgrade --notify --allow-daemon-start=false
|
4 |
+
run_from: ""
|
5 |
+
trigger: schedule 1h
|
6 |
+
result:
|
7 |
+
exit_code: 0
|
8 |
+
out: "notifications_to_delete:\r\n - trunk-check-upgrade\r\n - trunk-upgrade\r\n"
|
9 |
+
err: ""
|
10 |
+
timestamp: 1701761462
|
11 |
+
full_timestamp:
|
12 |
+
nanos: 38032000
|
13 |
+
seconds: 1701761462
|
14 |
+
trunk_version: 1.17.2
|
15 |
+
action_output:
|
16 |
+
notifications_to_delete:
|
17 |
+
- trunk-check-upgrade
|
18 |
+
- trunk-upgrade
|
2023-12-05-08-31-00.197.yaml
ADDED
@@ -0,0 +1,18 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
action_id: trunk-upgrade-available
|
2 |
+
date: 2023-12-05 08:31:00
|
3 |
+
run: trunk upgrade --notify --allow-daemon-start=false
|
4 |
+
run_from: ""
|
5 |
+
trigger: schedule 1h
|
6 |
+
result:
|
7 |
+
exit_code: 0
|
8 |
+
out: "notifications_to_delete:\r\n - trunk-check-upgrade\r\n - trunk-upgrade\r\n"
|
9 |
+
err: ""
|
10 |
+
timestamp: 1701765060
|
11 |
+
full_timestamp:
|
12 |
+
nanos: 197372000
|
13 |
+
seconds: 1701765060
|
14 |
+
trunk_version: 1.17.2
|
15 |
+
action_output:
|
16 |
+
notifications_to_delete:
|
17 |
+
- trunk-check-upgrade
|
18 |
+
- trunk-upgrade
|
2023-12-05-09-30-58.765.yaml
ADDED
@@ -0,0 +1,32 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
action_id: trunk-upgrade-available
|
2 |
+
date: 2023-12-05 09:30:58
|
3 |
+
run: trunk upgrade --notify --allow-daemon-start=false
|
4 |
+
run_from: ""
|
5 |
+
trigger: schedule 1h
|
6 |
+
result:
|
7 |
+
exit_code: 0
|
8 |
+
out: "notifications:\r\n - commands:\r\n - run: trunk upgrade\r\n title: all\r\n - run: trunk upgrade check\r\n title: Linters\r\n id: trunk-upgrade\r\n message: \" 1 linter upgrade\\n\"\r\n priority: low\r\n rendered: \"\\x1b[90mRun \\x1b[0m\\x1b[96mtrunk upgrade\\x1b[0m\\x1b[90m to upgrade \\x1b[0m\\x1b[90m1 linter\\n\\x1b[0m\"\r\n title: Upgrade Available\r\nnotifications_to_delete:\r\n - trunk-check-upgrade\r\n"
|
9 |
+
err: ""
|
10 |
+
timestamp: 1701768658
|
11 |
+
full_timestamp:
|
12 |
+
nanos: 765798000
|
13 |
+
seconds: 1701768658
|
14 |
+
trunk_version: 1.17.2
|
15 |
+
action_output:
|
16 |
+
notifications:
|
17 |
+
- commands:
|
18 |
+
- run: trunk upgrade
|
19 |
+
title: all
|
20 |
+
- run: trunk upgrade check
|
21 |
+
title: Linters
|
22 |
+
full_timestamp:
|
23 |
+
nanos: 765798000
|
24 |
+
seconds: 1701768658
|
25 |
+
id: trunk-upgrade
|
26 |
+
message: " 1 linter upgrade\n"
|
27 |
+
priority: low
|
28 |
+
rendered: "\x1b[90mRun \x1b[0m\x1b[96mtrunk upgrade\x1b[0m\x1b[90m to upgrade \x1b[0m\x1b[90m1 linter\n\x1b[0m"
|
29 |
+
timestamp: 1701768658
|
30 |
+
title: Upgrade Available
|
31 |
+
notifications_to_delete:
|
32 |
+
- trunk-check-upgrade
|
2023-12-05-10-31-00.254.yaml
ADDED
@@ -0,0 +1,32 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
action_id: trunk-upgrade-available
|
2 |
+
date: 2023-12-05 10:31:00
|
3 |
+
run: trunk upgrade --notify --allow-daemon-start=false
|
4 |
+
run_from: ""
|
5 |
+
trigger: schedule 1h
|
6 |
+
result:
|
7 |
+
exit_code: 0
|
8 |
+
out: "notifications:\r\n - commands:\r\n - run: trunk upgrade\r\n title: all\r\n - run: trunk upgrade check\r\n title: Linters\r\n id: trunk-upgrade\r\n message: \" 1 linter upgrade\\n\"\r\n priority: low\r\n rendered: \"\\x1b[90mRun \\x1b[0m\\x1b[96mtrunk upgrade\\x1b[0m\\x1b[90m to upgrade \\x1b[0m\\x1b[90m1 linter\\n\\x1b[0m\"\r\n title: Upgrade Available\r\nnotifications_to_delete:\r\n - trunk-check-upgrade\r\n"
|
9 |
+
err: ""
|
10 |
+
timestamp: 1701772260
|
11 |
+
full_timestamp:
|
12 |
+
nanos: 254681000
|
13 |
+
seconds: 1701772260
|
14 |
+
trunk_version: 1.17.2
|
15 |
+
action_output:
|
16 |
+
notifications:
|
17 |
+
- commands:
|
18 |
+
- run: trunk upgrade
|
19 |
+
title: all
|
20 |
+
- run: trunk upgrade check
|
21 |
+
title: Linters
|
22 |
+
full_timestamp:
|
23 |
+
nanos: 254681000
|
24 |
+
seconds: 1701772260
|
25 |
+
id: trunk-upgrade
|
26 |
+
message: " 1 linter upgrade\n"
|
27 |
+
priority: low
|
28 |
+
rendered: "\x1b[90mRun \x1b[0m\x1b[96mtrunk upgrade\x1b[0m\x1b[90m to upgrade \x1b[0m\x1b[90m1 linter\n\x1b[0m"
|
29 |
+
timestamp: 1701772260
|
30 |
+
title: Upgrade Available
|
31 |
+
notifications_to_delete:
|
32 |
+
- trunk-check-upgrade
|
2023-12-05-11-31-00.443.yaml
ADDED
@@ -0,0 +1,32 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
action_id: trunk-upgrade-available
|
2 |
+
date: 2023-12-05 11:31:00
|
3 |
+
run: trunk upgrade --notify --allow-daemon-start=false
|
4 |
+
run_from: ""
|
5 |
+
trigger: schedule 1h
|
6 |
+
result:
|
7 |
+
exit_code: 0
|
8 |
+
out: "notifications:\r\n - commands:\r\n - run: trunk upgrade\r\n title: all\r\n - run: trunk upgrade check\r\n title: Linters\r\n id: trunk-upgrade\r\n message: \" 1 linter upgrade\\n\"\r\n priority: low\r\n rendered: \"\\x1b[90mRun \\x1b[0m\\x1b[96mtrunk upgrade\\x1b[0m\\x1b[90m to upgrade \\x1b[0m\\x1b[90m1 linter\\n\\x1b[0m\"\r\n title: Upgrade Available\r\nnotifications_to_delete:\r\n - trunk-check-upgrade\r\n"
|
9 |
+
err: ""
|
10 |
+
timestamp: 1701775860
|
11 |
+
full_timestamp:
|
12 |
+
nanos: 443133000
|
13 |
+
seconds: 1701775860
|
14 |
+
trunk_version: 1.17.2
|
15 |
+
action_output:
|
16 |
+
notifications:
|
17 |
+
- commands:
|
18 |
+
- run: trunk upgrade
|
19 |
+
title: all
|
20 |
+
- run: trunk upgrade check
|
21 |
+
title: Linters
|
22 |
+
full_timestamp:
|
23 |
+
nanos: 443133000
|
24 |
+
seconds: 1701775860
|
25 |
+
id: trunk-upgrade
|
26 |
+
message: " 1 linter upgrade\n"
|
27 |
+
priority: low
|
28 |
+
rendered: "\x1b[90mRun \x1b[0m\x1b[96mtrunk upgrade\x1b[0m\x1b[90m to upgrade \x1b[0m\x1b[90m1 linter\n\x1b[0m"
|
29 |
+
timestamp: 1701775860
|
30 |
+
title: Upgrade Available
|
31 |
+
notifications_to_delete:
|
32 |
+
- trunk-check-upgrade
|
2023-12-05-12-31-02.486.yaml
ADDED
@@ -0,0 +1,32 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
action_id: trunk-upgrade-available
|
2 |
+
date: 2023-12-05 12:31:02
|
3 |
+
run: trunk upgrade --notify --allow-daemon-start=false
|
4 |
+
run_from: ""
|
5 |
+
trigger: schedule 1h
|
6 |
+
result:
|
7 |
+
exit_code: 0
|
8 |
+
out: "notifications:\r\n - commands:\r\n - run: trunk upgrade\r\n title: all\r\n - run: trunk upgrade check\r\n title: Linters\r\n id: trunk-upgrade\r\n message: \" 1 linter upgrade\\n\"\r\n priority: low\r\n rendered: \"\\x1b[90mRun \\x1b[0m\\x1b[96mtrunk upgrade\\x1b[0m\\x1b[90m to upgrade \\x1b[0m\\x1b[90m1 linter\\n\\x1b[0m\"\r\n title: Upgrade Available\r\nnotifications_to_delete:\r\n - trunk-check-upgrade\r\n"
|
9 |
+
err: ""
|
10 |
+
timestamp: 1701779462
|
11 |
+
full_timestamp:
|
12 |
+
nanos: 486467000
|
13 |
+
seconds: 1701779462
|
14 |
+
trunk_version: 1.17.2
|
15 |
+
action_output:
|
16 |
+
notifications:
|
17 |
+
- commands:
|
18 |
+
- run: trunk upgrade
|
19 |
+
title: all
|
20 |
+
- run: trunk upgrade check
|
21 |
+
title: Linters
|
22 |
+
full_timestamp:
|
23 |
+
nanos: 486467000
|
24 |
+
seconds: 1701779462
|
25 |
+
id: trunk-upgrade
|
26 |
+
message: " 1 linter upgrade\n"
|
27 |
+
priority: low
|
28 |
+
rendered: "\x1b[90mRun \x1b[0m\x1b[96mtrunk upgrade\x1b[0m\x1b[90m to upgrade \x1b[0m\x1b[90m1 linter\n\x1b[0m"
|
29 |
+
timestamp: 1701779462
|
30 |
+
title: Upgrade Available
|
31 |
+
notifications_to_delete:
|
32 |
+
- trunk-check-upgrade
|
2023-12-05-13-31-01.86.yaml
ADDED
@@ -0,0 +1,32 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
action_id: trunk-upgrade-available
|
2 |
+
date: 2023-12-05 13:31:01
|
3 |
+
run: trunk upgrade --notify --allow-daemon-start=false
|
4 |
+
run_from: ""
|
5 |
+
trigger: schedule 1h
|
6 |
+
result:
|
7 |
+
exit_code: 0
|
8 |
+
out: "notifications:\r\n - commands:\r\n - run: trunk upgrade\r\n title: all\r\n - run: trunk upgrade check\r\n title: Linters\r\n id: trunk-upgrade\r\n message: \" 1 linter upgrade\\n\"\r\n priority: low\r\n rendered: \"\\x1b[90mRun \\x1b[0m\\x1b[96mtrunk upgrade\\x1b[0m\\x1b[90m to upgrade \\x1b[0m\\x1b[90m1 linter\\n\\x1b[0m\"\r\n title: Upgrade Available\r\nnotifications_to_delete:\r\n - trunk-check-upgrade\r\n"
|
9 |
+
err: ""
|
10 |
+
timestamp: 1701783061
|
11 |
+
full_timestamp:
|
12 |
+
nanos: 86544000
|
13 |
+
seconds: 1701783061
|
14 |
+
trunk_version: 1.17.2
|
15 |
+
action_output:
|
16 |
+
notifications:
|
17 |
+
- commands:
|
18 |
+
- run: trunk upgrade
|
19 |
+
title: all
|
20 |
+
- run: trunk upgrade check
|
21 |
+
title: Linters
|
22 |
+
full_timestamp:
|
23 |
+
nanos: 86544000
|
24 |
+
seconds: 1701783061
|
25 |
+
id: trunk-upgrade
|
26 |
+
message: " 1 linter upgrade\n"
|
27 |
+
priority: low
|
28 |
+
rendered: "\x1b[90mRun \x1b[0m\x1b[96mtrunk upgrade\x1b[0m\x1b[90m to upgrade \x1b[0m\x1b[90m1 linter\n\x1b[0m"
|
29 |
+
timestamp: 1701783061
|
30 |
+
title: Upgrade Available
|
31 |
+
notifications_to_delete:
|
32 |
+
- trunk-check-upgrade
|
2023-12-05-14-31-02.15.yaml
ADDED
@@ -0,0 +1,32 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
action_id: trunk-upgrade-available
|
2 |
+
date: 2023-12-05 14:31:02
|
3 |
+
run: trunk upgrade --notify --allow-daemon-start=false
|
4 |
+
run_from: ""
|
5 |
+
trigger: schedule 1h
|
6 |
+
result:
|
7 |
+
exit_code: 0
|
8 |
+
out: "notifications:\r\n - commands:\r\n - run: trunk upgrade\r\n title: all\r\n - run: trunk upgrade check\r\n title: Linters\r\n id: trunk-upgrade\r\n message: \" 1 linter upgrade\\n\"\r\n priority: low\r\n rendered: \"\\x1b[90mRun \\x1b[0m\\x1b[96mtrunk upgrade\\x1b[0m\\x1b[90m to upgrade \\x1b[0m\\x1b[90m1 linter\\n\\x1b[0m\"\r\n title: Upgrade Available\r\nnotifications_to_delete:\r\n - trunk-check-upgrade\r\n"
|
9 |
+
err: ""
|
10 |
+
timestamp: 1701786662
|
11 |
+
full_timestamp:
|
12 |
+
nanos: 15957000
|
13 |
+
seconds: 1701786662
|
14 |
+
trunk_version: 1.17.2
|
15 |
+
action_output:
|
16 |
+
notifications:
|
17 |
+
- commands:
|
18 |
+
- run: trunk upgrade
|
19 |
+
title: all
|
20 |
+
- run: trunk upgrade check
|
21 |
+
title: Linters
|
22 |
+
full_timestamp:
|
23 |
+
nanos: 15957000
|
24 |
+
seconds: 1701786662
|
25 |
+
id: trunk-upgrade
|
26 |
+
message: " 1 linter upgrade\n"
|
27 |
+
priority: low
|
28 |
+
rendered: "\x1b[90mRun \x1b[0m\x1b[96mtrunk upgrade\x1b[0m\x1b[90m to upgrade \x1b[0m\x1b[90m1 linter\n\x1b[0m"
|
29 |
+
timestamp: 1701786662
|
30 |
+
title: Upgrade Available
|
31 |
+
notifications_to_delete:
|
32 |
+
- trunk-check-upgrade
|
2023-12-05-15-31-00.836.yaml
ADDED
@@ -0,0 +1,32 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
action_id: trunk-upgrade-available
|
2 |
+
date: 2023-12-05 15:31:00
|
3 |
+
run: trunk upgrade --notify --allow-daemon-start=false
|
4 |
+
run_from: ""
|
5 |
+
trigger: schedule 1h
|
6 |
+
result:
|
7 |
+
exit_code: 0
|
8 |
+
out: "notifications:\r\n - commands:\r\n - run: trunk upgrade\r\n title: all\r\n - run: trunk upgrade check\r\n title: Linters\r\n id: trunk-upgrade\r\n message: \" 1 linter upgrade\\n\"\r\n priority: low\r\n rendered: \"\\x1b[90mRun \\x1b[0m\\x1b[96mtrunk upgrade\\x1b[0m\\x1b[90m to upgrade \\x1b[0m\\x1b[90m1 linter\\n\\x1b[0m\"\r\n title: Upgrade Available\r\nnotifications_to_delete:\r\n - trunk-check-upgrade\r\n"
|
9 |
+
err: ""
|
10 |
+
timestamp: 1701790260
|
11 |
+
full_timestamp:
|
12 |
+
nanos: 836902000
|
13 |
+
seconds: 1701790260
|
14 |
+
trunk_version: 1.17.2
|
15 |
+
action_output:
|
16 |
+
notifications:
|
17 |
+
- commands:
|
18 |
+
- run: trunk upgrade
|
19 |
+
title: all
|
20 |
+
- run: trunk upgrade check
|
21 |
+
title: Linters
|
22 |
+
full_timestamp:
|
23 |
+
nanos: 836902000
|
24 |
+
seconds: 1701790260
|
25 |
+
id: trunk-upgrade
|
26 |
+
message: " 1 linter upgrade\n"
|
27 |
+
priority: low
|
28 |
+
rendered: "\x1b[90mRun \x1b[0m\x1b[96mtrunk upgrade\x1b[0m\x1b[90m to upgrade \x1b[0m\x1b[90m1 linter\n\x1b[0m"
|
29 |
+
timestamp: 1701790260
|
30 |
+
title: Upgrade Available
|
31 |
+
notifications_to_delete:
|
32 |
+
- trunk-check-upgrade
|
2023-12-05-16-30-46.593.yaml
ADDED
@@ -0,0 +1,32 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
action_id: trunk-upgrade-available
|
2 |
+
date: 2023-12-05 16:30:46
|
3 |
+
run: trunk upgrade --notify --allow-daemon-start=false
|
4 |
+
run_from: ""
|
5 |
+
trigger: schedule 1h
|
6 |
+
result:
|
7 |
+
exit_code: 0
|
8 |
+
out: "notifications:\r\n - commands:\r\n - run: trunk upgrade\r\n title: all\r\n - run: trunk upgrade check\r\n title: Linters\r\n id: trunk-upgrade\r\n message: \" 1 linter upgrade\\n\"\r\n priority: low\r\n rendered: \"\\x1b[90mRun \\x1b[0m\\x1b[96mtrunk upgrade\\x1b[0m\\x1b[90m to upgrade \\x1b[0m\\x1b[90m1 linter\\n\\x1b[0m\"\r\n title: Upgrade Available\r\nnotifications_to_delete:\r\n - trunk-check-upgrade\r\n"
|
9 |
+
err: ""
|
10 |
+
timestamp: 1701793846
|
11 |
+
full_timestamp:
|
12 |
+
nanos: 593991000
|
13 |
+
seconds: 1701793846
|
14 |
+
trunk_version: 1.17.2
|
15 |
+
action_output:
|
16 |
+
notifications:
|
17 |
+
- commands:
|
18 |
+
- run: trunk upgrade
|
19 |
+
title: all
|
20 |
+
- run: trunk upgrade check
|
21 |
+
title: Linters
|
22 |
+
full_timestamp:
|
23 |
+
nanos: 593991000
|
24 |
+
seconds: 1701793846
|
25 |
+
id: trunk-upgrade
|
26 |
+
message: " 1 linter upgrade\n"
|
27 |
+
priority: low
|
28 |
+
rendered: "\x1b[90mRun \x1b[0m\x1b[96mtrunk upgrade\x1b[0m\x1b[90m to upgrade \x1b[0m\x1b[90m1 linter\n\x1b[0m"
|
29 |
+
timestamp: 1701793846
|
30 |
+
title: Upgrade Available
|
31 |
+
notifications_to_delete:
|
32 |
+
- trunk-check-upgrade
|
2023-12-05-17-30-47.77.yaml
ADDED
@@ -0,0 +1,32 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
action_id: trunk-upgrade-available
|
2 |
+
date: 2023-12-05 17:30:47
|
3 |
+
run: trunk upgrade --notify --allow-daemon-start=false
|
4 |
+
run_from: ""
|
5 |
+
trigger: schedule 1h
|
6 |
+
result:
|
7 |
+
exit_code: 0
|
8 |
+
out: "notifications:\r\n - commands:\r\n - run: trunk upgrade\r\n title: all\r\n - run: trunk upgrade check\r\n title: Linters\r\n id: trunk-upgrade\r\n message: \" 1 linter upgrade\\n\"\r\n priority: low\r\n rendered: \"\\x1b[90mRun \\x1b[0m\\x1b[96mtrunk upgrade\\x1b[0m\\x1b[90m to upgrade \\x1b[0m\\x1b[90m1 linter\\n\\x1b[0m\"\r\n title: Upgrade Available\r\nnotifications_to_delete:\r\n - trunk-check-upgrade\r\n"
|
9 |
+
err: ""
|
10 |
+
timestamp: 1701797447
|
11 |
+
full_timestamp:
|
12 |
+
nanos: 77133000
|
13 |
+
seconds: 1701797447
|
14 |
+
trunk_version: 1.17.2
|
15 |
+
action_output:
|
16 |
+
notifications:
|
17 |
+
- commands:
|
18 |
+
- run: trunk upgrade
|
19 |
+
title: all
|
20 |
+
- run: trunk upgrade check
|
21 |
+
title: Linters
|
22 |
+
full_timestamp:
|
23 |
+
nanos: 77133000
|
24 |
+
seconds: 1701797447
|
25 |
+
id: trunk-upgrade
|
26 |
+
message: " 1 linter upgrade\n"
|
27 |
+
priority: low
|
28 |
+
rendered: "\x1b[90mRun \x1b[0m\x1b[96mtrunk upgrade\x1b[0m\x1b[90m to upgrade \x1b[0m\x1b[90m1 linter\n\x1b[0m"
|
29 |
+
timestamp: 1701797447
|
30 |
+
title: Upgrade Available
|
31 |
+
notifications_to_delete:
|
32 |
+
- trunk-check-upgrade
|
2023-12-05-18-30-46.626.yaml
ADDED
@@ -0,0 +1,32 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
action_id: trunk-upgrade-available
|
2 |
+
date: 2023-12-05 18:30:46
|
3 |
+
run: trunk upgrade --notify --allow-daemon-start=false
|
4 |
+
run_from: ""
|
5 |
+
trigger: schedule 1h
|
6 |
+
result:
|
7 |
+
exit_code: 0
|
8 |
+
out: "notifications:\r\n - commands:\r\n - run: trunk upgrade\r\n title: all\r\n - run: trunk upgrade check\r\n title: Linters\r\n id: trunk-upgrade\r\n message: \" 1 linter upgrade\\n\"\r\n priority: low\r\n rendered: \"\\x1b[90mRun \\x1b[0m\\x1b[96mtrunk upgrade\\x1b[0m\\x1b[90m to upgrade \\x1b[0m\\x1b[90m1 linter\\n\\x1b[0m\"\r\n title: Upgrade Available\r\nnotifications_to_delete:\r\n - trunk-check-upgrade\r\n"
|
9 |
+
err: ""
|
10 |
+
timestamp: 1701801046
|
11 |
+
full_timestamp:
|
12 |
+
nanos: 626242000
|
13 |
+
seconds: 1701801046
|
14 |
+
trunk_version: 1.17.2
|
15 |
+
action_output:
|
16 |
+
notifications:
|
17 |
+
- commands:
|
18 |
+
- run: trunk upgrade
|
19 |
+
title: all
|
20 |
+
- run: trunk upgrade check
|
21 |
+
title: Linters
|
22 |
+
full_timestamp:
|
23 |
+
nanos: 626242000
|
24 |
+
seconds: 1701801046
|
25 |
+
id: trunk-upgrade
|
26 |
+
message: " 1 linter upgrade\n"
|
27 |
+
priority: low
|
28 |
+
rendered: "\x1b[90mRun \x1b[0m\x1b[96mtrunk upgrade\x1b[0m\x1b[90m to upgrade \x1b[0m\x1b[90m1 linter\n\x1b[0m"
|
29 |
+
timestamp: 1701801046
|
30 |
+
title: Upgrade Available
|
31 |
+
notifications_to_delete:
|
32 |
+
- trunk-check-upgrade
|
2023-12-05-19-30-47.618.yaml
ADDED
@@ -0,0 +1,32 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
action_id: trunk-upgrade-available
|
2 |
+
date: 2023-12-05 19:30:47
|
3 |
+
run: trunk upgrade --notify --allow-daemon-start=false
|
4 |
+
run_from: ""
|
5 |
+
trigger: schedule 1h
|
6 |
+
result:
|
7 |
+
exit_code: 0
|
8 |
+
out: "notifications:\r\n - commands:\r\n - run: trunk upgrade\r\n title: all\r\n - run: trunk upgrade check\r\n title: Linters\r\n id: trunk-upgrade\r\n message: \" 1 linter upgrade\\n\"\r\n priority: low\r\n rendered: \"\\x1b[90mRun \\x1b[0m\\x1b[96mtrunk upgrade\\x1b[0m\\x1b[90m to upgrade \\x1b[0m\\x1b[90m1 linter\\n\\x1b[0m\"\r\n title: Upgrade Available\r\nnotifications_to_delete:\r\n - trunk-check-upgrade\r\n"
|
9 |
+
err: ""
|
10 |
+
timestamp: 1701804647
|
11 |
+
full_timestamp:
|
12 |
+
nanos: 618313000
|
13 |
+
seconds: 1701804647
|
14 |
+
trunk_version: 1.17.2
|
15 |
+
action_output:
|
16 |
+
notifications:
|
17 |
+
- commands:
|
18 |
+
- run: trunk upgrade
|
19 |
+
title: all
|
20 |
+
- run: trunk upgrade check
|
21 |
+
title: Linters
|
22 |
+
full_timestamp:
|
23 |
+
nanos: 618313000
|
24 |
+
seconds: 1701804647
|
25 |
+
id: trunk-upgrade
|
26 |
+
message: " 1 linter upgrade\n"
|
27 |
+
priority: low
|
28 |
+
rendered: "\x1b[90mRun \x1b[0m\x1b[96mtrunk upgrade\x1b[0m\x1b[90m to upgrade \x1b[0m\x1b[90m1 linter\n\x1b[0m"
|
29 |
+
timestamp: 1701804647
|
30 |
+
title: Upgrade Available
|
31 |
+
notifications_to_delete:
|
32 |
+
- trunk-check-upgrade
|
2023-12-05-20-30-46.586.yaml
ADDED
@@ -0,0 +1,32 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
action_id: trunk-upgrade-available
|
2 |
+
date: 2023-12-05 20:30:46
|
3 |
+
run: trunk upgrade --notify --allow-daemon-start=false
|
4 |
+
run_from: ""
|
5 |
+
trigger: schedule 1h
|
6 |
+
result:
|
7 |
+
exit_code: 0
|
8 |
+
out: "notifications:\r\n - commands:\r\n - run: trunk upgrade\r\n title: all\r\n - run: trunk upgrade check\r\n title: Linters\r\n id: trunk-upgrade\r\n message: \" 1 linter upgrade\\n\"\r\n priority: low\r\n rendered: \"\\x1b[90mRun \\x1b[0m\\x1b[96mtrunk upgrade\\x1b[0m\\x1b[90m to upgrade \\x1b[0m\\x1b[90m1 linter\\n\\x1b[0m\"\r\n title: Upgrade Available\r\nnotifications_to_delete:\r\n - trunk-check-upgrade\r\n"
|
9 |
+
err: ""
|
10 |
+
timestamp: 1701808246
|
11 |
+
full_timestamp:
|
12 |
+
nanos: 586167000
|
13 |
+
seconds: 1701808246
|
14 |
+
trunk_version: 1.17.2
|
15 |
+
action_output:
|
16 |
+
notifications:
|
17 |
+
- commands:
|
18 |
+
- run: trunk upgrade
|
19 |
+
title: all
|
20 |
+
- run: trunk upgrade check
|
21 |
+
title: Linters
|
22 |
+
full_timestamp:
|
23 |
+
nanos: 586167000
|
24 |
+
seconds: 1701808246
|
25 |
+
id: trunk-upgrade
|
26 |
+
message: " 1 linter upgrade\n"
|
27 |
+
priority: low
|
28 |
+
rendered: "\x1b[90mRun \x1b[0m\x1b[96mtrunk upgrade\x1b[0m\x1b[90m to upgrade \x1b[0m\x1b[90m1 linter\n\x1b[0m"
|
29 |
+
timestamp: 1701808246
|
30 |
+
title: Upgrade Available
|
31 |
+
notifications_to_delete:
|
32 |
+
- trunk-check-upgrade
|
2023-12-05-21-30-40.649.yaml
ADDED
@@ -0,0 +1,28 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
action_id: trunk-share-with-everyone
|
2 |
+
date: 2023-12-05 21:30:40
|
3 |
+
run: trunk config share --notify --allow-daemon-start=false
|
4 |
+
run_from: ""
|
5 |
+
trigger: schedule 24h
|
6 |
+
result:
|
7 |
+
exit_code: 0
|
8 |
+
out: "notifications:\r\n - commands:\r\n - run: trunk config share\r\n title: Share trunk config\r\n id: trunk-share-with-everyone\r\n message: Remove trunk from your local git ignores\r\n priority: low\r\n rendered: \"\\x1b[90mRun \\x1b[0m\\x1b[96mtrunk config share\\x1b[0m\\x1b[90m to allow committing your trunk config for your teammates to use\\n\\x1b[0m\"\r\n title: Share trunk config\r\n"
|
9 |
+
err: ""
|
10 |
+
timestamp: 1701811840
|
11 |
+
full_timestamp:
|
12 |
+
nanos: 649458000
|
13 |
+
seconds: 1701811840
|
14 |
+
trunk_version: 1.17.2
|
15 |
+
action_output:
|
16 |
+
notifications:
|
17 |
+
- commands:
|
18 |
+
- run: trunk config share
|
19 |
+
title: Share trunk config
|
20 |
+
full_timestamp:
|
21 |
+
nanos: 649458000
|
22 |
+
seconds: 1701811840
|
23 |
+
id: trunk-share-with-everyone
|
24 |
+
message: Remove trunk from your local git ignores
|
25 |
+
priority: low
|
26 |
+
rendered: "\x1b[90mRun \x1b[0m\x1b[96mtrunk config share\x1b[0m\x1b[90m to allow committing your trunk config for your teammates to use\n\x1b[0m"
|
27 |
+
timestamp: 1701811840
|
28 |
+
title: Share trunk config
|
2023-12-05-21-30-48.275.yaml
ADDED
@@ -0,0 +1,32 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
action_id: trunk-upgrade-available
|
2 |
+
date: 2023-12-05 21:30:48
|
3 |
+
run: trunk upgrade --notify --allow-daemon-start=false
|
4 |
+
run_from: ""
|
5 |
+
trigger: schedule 1h
|
6 |
+
result:
|
7 |
+
exit_code: 0
|
8 |
+
out: "notifications:\r\n - commands:\r\n - run: trunk upgrade\r\n title: all\r\n - run: trunk upgrade check\r\n title: Linters\r\n id: trunk-upgrade\r\n message: \" 1 linter upgrade\\n\"\r\n priority: low\r\n rendered: \"\\x1b[90mRun \\x1b[0m\\x1b[96mtrunk upgrade\\x1b[0m\\x1b[90m to upgrade \\x1b[0m\\x1b[90m1 linter\\n\\x1b[0m\"\r\n title: Upgrade Available\r\nnotifications_to_delete:\r\n - trunk-check-upgrade\r\n"
|
9 |
+
err: ""
|
10 |
+
timestamp: 1701811848
|
11 |
+
full_timestamp:
|
12 |
+
nanos: 275572000
|
13 |
+
seconds: 1701811848
|
14 |
+
trunk_version: 1.17.2
|
15 |
+
action_output:
|
16 |
+
notifications:
|
17 |
+
- commands:
|
18 |
+
- run: trunk upgrade
|
19 |
+
title: all
|
20 |
+
- run: trunk upgrade check
|
21 |
+
title: Linters
|
22 |
+
full_timestamp:
|
23 |
+
nanos: 275572000
|
24 |
+
seconds: 1701811848
|
25 |
+
id: trunk-upgrade
|
26 |
+
message: " 1 linter upgrade\n"
|
27 |
+
priority: low
|
28 |
+
rendered: "\x1b[90mRun \x1b[0m\x1b[96mtrunk upgrade\x1b[0m\x1b[90m to upgrade \x1b[0m\x1b[90m1 linter\n\x1b[0m"
|
29 |
+
timestamp: 1701811848
|
30 |
+
title: Upgrade Available
|
31 |
+
notifications_to_delete:
|
32 |
+
- trunk-check-upgrade
|
2023-12-05-21-35-54.695.yaml
ADDED
@@ -0,0 +1,14 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
action_id: trunk-single-player-auto-on-upgrade
|
2 |
+
date: 2023-12-05 21:35:54
|
3 |
+
run: trunk on-upgrade --single-player-only -n --no-progress --allow-daemon-start=false --print-summary --scope=check,plugins,runtimes,tools
|
4 |
+
run_from: ""
|
5 |
+
trigger: schedule 24h+5m
|
6 |
+
result:
|
7 |
+
exit_code: 0
|
8 |
+
out: "\r\n\x1b[1m1 linter was upgraded:\r\n\r\n\x1b[0m ruff \x1b[90m0.1.6\x1b[0m → \x1b[92m0.1.7\x1b[0m\r\n\r\n"
|
9 |
+
err: ""
|
10 |
+
timestamp: 1701812154
|
11 |
+
full_timestamp:
|
12 |
+
nanos: 695379000
|
13 |
+
seconds: 1701812154
|
14 |
+
trunk_version: 1.17.2
|
2023-12-05-22-30-40.703.yaml
ADDED
@@ -0,0 +1,14 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
action_id: trunk-single-player-auto-upgrade
|
2 |
+
date: 2023-12-05 22:30:40
|
3 |
+
run: trunk upgrade cli --single-player-only -n --no-progress --on-upgrade=false --allow-daemon-start=false
|
4 |
+
run_from: ""
|
5 |
+
trigger: schedule 24h+1h
|
6 |
+
result:
|
7 |
+
exit_code: 0
|
8 |
+
out: ""
|
9 |
+
err: ""
|
10 |
+
timestamp: 1701815440
|
11 |
+
full_timestamp:
|
12 |
+
nanos: 703259000
|
13 |
+
seconds: 1701815440
|
14 |
+
trunk_version: 1.17.2
|
2023-12-05-22-30-46.946.yaml
ADDED
@@ -0,0 +1,18 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
action_id: trunk-upgrade-available
|
2 |
+
date: 2023-12-05 22:30:46
|
3 |
+
run: trunk upgrade --notify --allow-daemon-start=false
|
4 |
+
run_from: ""
|
5 |
+
trigger: schedule 1h
|
6 |
+
result:
|
7 |
+
exit_code: 0
|
8 |
+
out: "notifications_to_delete:\r\n - trunk-check-upgrade\r\n - trunk-upgrade\r\n"
|
9 |
+
err: ""
|
10 |
+
timestamp: 1701815446
|
11 |
+
full_timestamp:
|
12 |
+
nanos: 946395000
|
13 |
+
seconds: 1701815446
|
14 |
+
trunk_version: 1.17.2
|
15 |
+
action_output:
|
16 |
+
notifications_to_delete:
|
17 |
+
- trunk-check-upgrade
|
18 |
+
- trunk-upgrade
|
2023-12-05-23-30-48.22.yaml
ADDED
@@ -0,0 +1,18 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
action_id: trunk-upgrade-available
|
2 |
+
date: 2023-12-05 23:30:48
|
3 |
+
run: trunk upgrade --notify --allow-daemon-start=false
|
4 |
+
run_from: ""
|
5 |
+
trigger: schedule 1h
|
6 |
+
result:
|
7 |
+
exit_code: 0
|
8 |
+
out: "notifications_to_delete:\r\n - trunk-check-upgrade\r\n - trunk-upgrade\r\n"
|
9 |
+
err: ""
|
10 |
+
timestamp: 1701819048
|
11 |
+
full_timestamp:
|
12 |
+
nanos: 22808000
|
13 |
+
seconds: 1701819048
|
14 |
+
trunk_version: 1.17.2
|
15 |
+
action_output:
|
16 |
+
notifications_to_delete:
|
17 |
+
- trunk-check-upgrade
|
18 |
+
- trunk-upgrade
|
2023-12-06-00-30-49.211.yaml
ADDED
@@ -0,0 +1,32 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
action_id: trunk-upgrade-available
|
2 |
+
date: 2023-12-06 00:30:49
|
3 |
+
run: trunk upgrade --notify --allow-daemon-start=false
|
4 |
+
run_from: ""
|
5 |
+
trigger: schedule 1h
|
6 |
+
result:
|
7 |
+
exit_code: 0
|
8 |
+
out: "notifications:\r\n - commands:\r\n - run: trunk upgrade\r\n title: all\r\n - run: trunk upgrade check\r\n title: Linters\r\n id: trunk-upgrade\r\n message: \" 1 linter upgrade\\n\"\r\n priority: low\r\n rendered: \"\\x1b[90mRun \\x1b[0m\\x1b[96mtrunk upgrade\\x1b[0m\\x1b[90m to upgrade \\x1b[0m\\x1b[90m1 linter\\n\\x1b[0m\"\r\n title: Upgrade Available\r\nnotifications_to_delete:\r\n - trunk-check-upgrade\r\n"
|
9 |
+
err: ""
|
10 |
+
timestamp: 1701822649
|
11 |
+
full_timestamp:
|
12 |
+
nanos: 211090000
|
13 |
+
seconds: 1701822649
|
14 |
+
trunk_version: 1.17.2
|
15 |
+
action_output:
|
16 |
+
notifications:
|
17 |
+
- commands:
|
18 |
+
- run: trunk upgrade
|
19 |
+
title: all
|
20 |
+
- run: trunk upgrade check
|
21 |
+
title: Linters
|
22 |
+
full_timestamp:
|
23 |
+
nanos: 211090000
|
24 |
+
seconds: 1701822649
|
25 |
+
id: trunk-upgrade
|
26 |
+
message: " 1 linter upgrade\n"
|
27 |
+
priority: low
|
28 |
+
rendered: "\x1b[90mRun \x1b[0m\x1b[96mtrunk upgrade\x1b[0m\x1b[90m to upgrade \x1b[0m\x1b[90m1 linter\n\x1b[0m"
|
29 |
+
timestamp: 1701822649
|
30 |
+
title: Upgrade Available
|
31 |
+
notifications_to_delete:
|
32 |
+
- trunk-check-upgrade
|
2023-12-06-01-30-46.813.yaml
ADDED
@@ -0,0 +1,32 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
action_id: trunk-upgrade-available
|
2 |
+
date: 2023-12-06 01:30:46
|
3 |
+
run: trunk upgrade --notify --allow-daemon-start=false
|
4 |
+
run_from: ""
|
5 |
+
trigger: schedule 1h
|
6 |
+
result:
|
7 |
+
exit_code: 0
|
8 |
+
out: "notifications:\r\n - commands:\r\n - run: trunk upgrade\r\n title: all\r\n - run: trunk upgrade check\r\n title: Linters\r\n id: trunk-upgrade\r\n message: \" 2 linter upgrades\\n\"\r\n priority: low\r\n rendered: \"\\x1b[90mRun \\x1b[0m\\x1b[96mtrunk upgrade\\x1b[0m\\x1b[90m to upgrade \\x1b[0m\\x1b[90m2 linters\\n\\x1b[0m\"\r\n title: Upgrades Available\r\nnotifications_to_delete:\r\n - trunk-check-upgrade\r\n"
|
9 |
+
err: ""
|
10 |
+
timestamp: 1701826246
|
11 |
+
full_timestamp:
|
12 |
+
nanos: 813341000
|
13 |
+
seconds: 1701826246
|
14 |
+
trunk_version: 1.17.2
|
15 |
+
action_output:
|
16 |
+
notifications:
|
17 |
+
- commands:
|
18 |
+
- run: trunk upgrade
|
19 |
+
title: all
|
20 |
+
- run: trunk upgrade check
|
21 |
+
title: Linters
|
22 |
+
full_timestamp:
|
23 |
+
nanos: 813341000
|
24 |
+
seconds: 1701826246
|
25 |
+
id: trunk-upgrade
|
26 |
+
message: " 2 linter upgrades\n"
|
27 |
+
priority: low
|
28 |
+
rendered: "\x1b[90mRun \x1b[0m\x1b[96mtrunk upgrade\x1b[0m\x1b[90m to upgrade \x1b[0m\x1b[90m2 linters\n\x1b[0m"
|
29 |
+
timestamp: 1701826246
|
30 |
+
title: Upgrades Available
|
31 |
+
notifications_to_delete:
|
32 |
+
- trunk-check-upgrade
|
2023-12-06-02-30-46.675.yaml
ADDED
@@ -0,0 +1,32 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
action_id: trunk-upgrade-available
|
2 |
+
date: 2023-12-06 02:30:46
|
3 |
+
run: trunk upgrade --notify --allow-daemon-start=false
|
4 |
+
run_from: ""
|
5 |
+
trigger: schedule 1h
|
6 |
+
result:
|
7 |
+
exit_code: 0
|
8 |
+
out: "notifications:\r\n - commands:\r\n - run: trunk upgrade\r\n title: all\r\n - run: trunk upgrade check\r\n title: Linters\r\n id: trunk-upgrade\r\n message: \" 2 linter upgrades\\n\"\r\n priority: low\r\n rendered: \"\\x1b[90mRun \\x1b[0m\\x1b[96mtrunk upgrade\\x1b[0m\\x1b[90m to upgrade \\x1b[0m\\x1b[90m2 linters\\n\\x1b[0m\"\r\n title: Upgrades Available\r\nnotifications_to_delete:\r\n - trunk-check-upgrade\r\n"
|
9 |
+
err: ""
|
10 |
+
timestamp: 1701829846
|
11 |
+
full_timestamp:
|
12 |
+
nanos: 675467000
|
13 |
+
seconds: 1701829846
|
14 |
+
trunk_version: 1.17.2
|
15 |
+
action_output:
|
16 |
+
notifications:
|
17 |
+
- commands:
|
18 |
+
- run: trunk upgrade
|
19 |
+
title: all
|
20 |
+
- run: trunk upgrade check
|
21 |
+
title: Linters
|
22 |
+
full_timestamp:
|
23 |
+
nanos: 675467000
|
24 |
+
seconds: 1701829846
|
25 |
+
id: trunk-upgrade
|
26 |
+
message: " 2 linter upgrades\n"
|
27 |
+
priority: low
|
28 |
+
rendered: "\x1b[90mRun \x1b[0m\x1b[96mtrunk upgrade\x1b[0m\x1b[90m to upgrade \x1b[0m\x1b[90m2 linters\n\x1b[0m"
|
29 |
+
timestamp: 1701829846
|
30 |
+
title: Upgrades Available
|
31 |
+
notifications_to_delete:
|
32 |
+
- trunk-check-upgrade
|