-
Notifications
You must be signed in to change notification settings - Fork 77
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add planning meeting agenda for types
- Loading branch information
Showing
4 changed files
with
120 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
use triagebot::agenda; | ||
|
||
#[tokio::main(flavor = "current_thread")] | ||
async fn main() -> anyhow::Result<()> { | ||
dotenv::dotenv().ok(); | ||
tracing_subscriber::fmt::init(); | ||
|
||
let args: Vec<String> = std::env::args().collect(); | ||
if args.len() == 2 { | ||
match &args[1][..] { | ||
"planning" => { | ||
let agenda = agenda::types_planning(); | ||
print!("{}", agenda.call().await?); | ||
return Ok(()); | ||
} | ||
_ => {} | ||
} | ||
} | ||
|
||
eprintln!("Usage: types (planning)"); | ||
|
||
Ok(()) | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,29 @@ | ||
{% import "_issues_heading.tt" as issues_heading %} | ||
{% import "_issues.tt" as issues %} | ||
--- | ||
title: {{CURRENT_DATE}} Planning meeting | ||
tags: weekly-meeting, T-types | ||
date: {{CURRENT_DATE}} | ||
--- | ||
|
||
# T-types planning meeting agenda | ||
|
||
## Updates | ||
|
||
{{-issues_heading::render(issues=roadmap_tracking_issues,split_url=false)}} | ||
|
||
## Nominated issues | ||
|
||
{{-issues_heading::render(issues=nominated_issues,split_url=false)}} | ||
|
||
## Types FCPs | ||
|
||
{{-issues_heading::render(issues=types_fcps,split_url=false)}} | ||
|
||
## Major change proposals | ||
|
||
{{-issues_heading::render(issues=major_changes,split_url=false)}} | ||
|
||
## Deep dive planning | ||
|
||
{{-issues_heading::render(issues=deep_dive_proposals,split_url=false)}} |