jobs
4 rows where repo = 206156866
This data as json, CSV (advanced)
Suggested facets: workflow, name, needs (array)
| id ▼ | workflow | name | repo | runs-on | strategy | needs | if |
|---|---|---|---|---|---|---|---|
| 27854 | Publish Python Package 20975 | test | twitter-to-sqlite 206156866 | ubuntu-latest | {"matrix": {"python-version": [3.6, 3.7, 3.8, 3.9]}} | ||
| 27855 | Publish Python Package 20975 | deploy | twitter-to-sqlite 206156866 | ubuntu-latest | ["test"] | ||
| 27856 | Update README table of contents 20976 | build | twitter-to-sqlite 206156866 | ubuntu-latest | |||
| 27857 | Test 20977 | test | twitter-to-sqlite 206156866 | ubuntu-latest | {"matrix": {"python-version": [3.6, 3.7, 3.8, 3.9]}} |
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]);