jobs
5 rows where repo = 207052882
This data as json, CSV (advanced)
Suggested facets: workflow, name, needs (array)
| id ▼ | workflow | name | repo | runs-on | strategy | needs | if |
|---|---|---|---|---|---|---|---|
| 27837 | Build and deploy demo 20963 | scheduled | github-to-sqlite 207052882 | ubuntu-latest | |||
| 27838 | Publish Python Package 20964 | test | github-to-sqlite 207052882 | ubuntu-latest | {"matrix": {"python-version": ["3.7", "3.8", "3.9", "3.10", "3.11"]}} | ||
| 27839 | Publish Python Package 20964 | deploy | github-to-sqlite 207052882 | ubuntu-latest | ["test"] | ||
| 27840 | Update README table of contents 20965 | build | github-to-sqlite 207052882 | ubuntu-latest | |||
| 27841 | Test 20966 | test | github-to-sqlite 207052882 | ubuntu-latest | {"matrix": {"python-version": ["3.7", "3.8", "3.9", "3.10", "3.11"]}} |
Advanced export
JSON shape: default, array, newline-delimited, object
CREATE TABLE [jobs] (
[id] INTEGER PRIMARY KEY,
[workflow] INTEGER REFERENCES [workflows]([id]),
[name] TEXT,
[repo] INTEGER REFERENCES [repos]([id]),
[runs-on] TEXT,
[strategy] TEXT
, [needs] TEXT, [if] TEXT);
CREATE INDEX [idx_jobs_repo]
ON [jobs] ([repo]);
CREATE INDEX [idx_jobs_workflow]
ON [jobs] ([workflow]);