steps
2 rows where uses = "actions/cache@v1"
This data as json, CSV (advanced)
| id ▼ | seq | job | repo | uses | name | with | run | env | if |
|---|---|---|---|---|---|---|---|---|---|
| 138683 | 3 | build 27833 | dogsheep-photos 256834907 | actions/cache@v1 | Configure pip caching | {
"path": "~/.cache/pip",
"key": "${{ runner.os }}-pip-${{ hashFiles('**/setup.py') }}",
"restore-keys": "${{ runner.os }}-pip-\n"
} |
|||
| 138703 | 3 | scheduled 27837 | github-to-sqlite 207052882 | actions/cache@v1 | Configure pip caching | {
"path": "~/.cache/pip",
"key": "${{ runner.os }}-pip-${{ hashFiles('**/setup.py') }}",
"restore-keys": "${{ runner.os }}-pip-\n"
} |
Advanced export
JSON shape: default, array, newline-delimited, object
CREATE TABLE [steps] (
[id] INTEGER PRIMARY KEY,
[seq] INTEGER,
[job] INTEGER REFERENCES [jobs]([id]),
[repo] INTEGER REFERENCES [repos]([id]),
[uses] TEXT,
[name] TEXT,
[with] TEXT,
[run] TEXT
, [env] TEXT, [if] TEXT);
CREATE INDEX [idx_steps_repo]
ON [steps] ([repo]);
CREATE INDEX [idx_steps_job]
ON [steps] ([job]);