An open API service indexing awesome lists of open source software.

https://github.com/zigcc/zig-milestone

Zig milstone monitor
https://github.com/zigcc/zig-milestone

monitor monitoring turso zig ziglang

Last synced: 2 months ago
JSON representation

Zig milstone monitor

Awesome Lists containing this project

README

        

#+TITLE: Zig Milestone Monitor
#+DATE: 2024-03-28T21:12:54+0800
#+LASTMOD: 2024-04-18T21:56:25+0800
#+AUTHOR: Jiacai Liu

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

Monitor [[https://github.com/ziglang/zig/milestones][Zig milestone]] progress ⚡️, powered by [[https://turso.tech/][Turso]] and update every day via GitHub Actions.

#+begin_quote
[[https://milestone.ziglang.cc/]]
#+end_quote

* SQLite tables
#+begin_src bash :results code :exports results :wrap src sql
cat schema.sql
#+end_src

#+RESULTS:
#+begin_src sql
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
);
#+end_src

* Note
- All metrics are collected since 2024-03-28.
* License
MIT