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
- Host: GitHub
- URL: https://github.com/zigcc/zig-milestone
- Owner: zigcc
- License: mit
- Created: 2024-03-28T12:31:17.000Z (about 1 year ago)
- Default Branch: main
- Last Pushed: 2025-03-09T12:40:08.000Z (4 months ago)
- Last Synced: 2025-03-25T22:51:33.326Z (3 months ago)
- Topics: monitor, monitoring, turso, zig, ziglang
- Language: JavaScript
- Homepage: https://milestone.ziglang.cc/
- Size: 73.2 KB
- Stars: 6
- Watchers: 2
- Forks: 0
- Open Issues: 1
-
Metadata Files:
- Readme: README.org
- License: LICENSE
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