home / github

Menu
  • Search all tables
  • GraphQL API

steps

Table actions
  • GraphQL API for steps

4 rows where job = 27861

✎ View and edit SQL

This data as json, CSV (advanced)

id ▼ seq job repo uses name with run env if
138819 1 prettier 27861 datasette 107914493 actions/checkout@v2 Check out repo        
138820 2 prettier 27861 datasette 107914493 actions/cache@v2 Configure npm caching
{
    "path": "~/.npm",
    "key": "${{ runner.OS }}-npm-${{ hashFiles('**/package-lock.json') }}",
    "restore-keys": "${{ runner.OS }}-npm-\n"
}
     
138821 3 prettier 27861 datasette 107914493   Install dependencies   npm ci    
138822 4 prettier 27861 datasette 107914493   Run prettier   npm run prettier -- --check    

Advanced export

JSON shape: default, array, newline-delimited, object

CSV options:

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]);
Powered by Datasette · Queries took 19.262ms · About: github-to-sqlite