zigcc / zig-milestone

Zig milstone monitor

Home Page:https://milestone.ziglang.cc/

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Zig Milestone Monitor

https://github.com/zigcc/zig-milestone/actions/workflows/ci.yml/badge.svg https://github.com/zigcc/zig-milestone/actions/workflows/fetch.yml/badge.svg

Monitor Zig milestone progress ⚡️, powered by Turso and update every day via GitHub Actions.

https://milestone.ziglang.cc/

SQLite tables

CREATE TABLE IF NOT EXISTS milestones (
  id integer PRIMARY KEY,
  created_at integer,
  updated_at integer,
  state text,
  title text,
  description text
);

CREATE TABLE IF NOT EXISTS milestone_histories (
  created_at integer,
  mid integer,
  open_issues integer,
  closed_issues integer
);

CREATE TABLE IF NOT EXISTS repo_histories (
  created_at integer,
  forks integer,
  stars integer,
  watchers integer,
  open_pulls integer,
  closed_pulls integer,
  merged_pulls integer,
  open_issues integer,
  closed_issues integer
);

Note

  • All metrics are collected since 2024-03-28.

License

MIT

About

Zig milstone monitor

https://milestone.ziglang.cc/

License:MIT License


Languages

Language:JavaScript 79.4%Language:EJS 19.9%Language:CSS 0.7%