Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 11 additions & 0 deletions mls.json
Original file line number Diff line number Diff line change
Expand Up @@ -2362,5 +2362,16 @@
"topic": "New activity in the EPUB GitHub repositories"
}
]
},
"team-strat@w3.org": {
"digest:monday": [
{
"repos": [
"w3c/strategy"
],
"eventFilter": { "label": ["charter"] },
"topic": "Agenda? Charters in the pipeline"
}
]
}
}
30 changes: 30 additions & 0 deletions templates/mls/team-strat@w3.org/digest
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
{{#topic}}{{{.}}}{{/topic}}{{^topic}}Agenda? Charters in the pipeline{{/topic}}

{{#errors.count}}Errors while compiling this report:
{{#errors.list}} - {{error}}{{/errors.list}}{{/errors.count}}

{{#repostatus}}
{{repo.open_issues_count}} charters in the pipeline, see:
https://www.w3.org/2024/03/charters-in-dev.html
{{/repostatus}}

{{#newissues.count}}{{.}} new charter issues since last report:
{{#newissues.list}}
- {{{payload.issue.title}}} (by {{actor.display_login}})
{{{payload.issue.html_url}}} {{#payload.issue.labels}}[{{name}}] {{/payload.issue.labels}}
{{/newissues.list}}

{{/newissues.count}}
{{#commentedissues.count}}{{.}} charter issues received {{issuecommentscount}} new comments:
{{#commentedissues.list}}
- #{{number}} {{{title}}} ({{commentscount}} by {{#commentors}}{{name}}{{^last}}, {{/last}}{{/commentors}})
{{{url}}} {{#labels}}[{{name}}] {{/labels}}
{{/commentedissues.list}}

{{/commentedissues.count}}
{{#closedissues.count}} {{.}} charter issues closed:
{{#closedissues.list}}
- {{{payload.issue.title}}} {{{payload.issue.html_url}}} {{#payload.issue.labels}}[{{name}}] {{/payload.issue.labels}}
{{/closedissues.list}}

{{/closedissues.count}}
69 changes: 69 additions & 0 deletions templates/mls/team-strat@w3.org/digest.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,69 @@
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>{{#topic}}{{{.}}}{{/topic}}{{^topic}}Agenda? Charters in the pipeline{{/topic}}</title>
<style>
body { font-family: Gotham, "Helvetica Neue", Helvetica, Arial, sans-serif; font-size: 14px; }
h2 { margin-top: 3em; color: #A52A2A; font-style: italic; font-weight: normal; }
h3 { margin-bottom:0; margin-top: 2em; font-size: 1.2em; }
h1+h2 { margin-top: 1em; }
a { color: #bb6219; text-decoration: none; }
li { margin-bottom: .35em; }
.repos { margin-bottom: 0; margin-top:0; line-height: 1.2; }
.new { color: red; }
.label { display: inline;
padding: .2em .6em .3em;
font-size: 75%;
font-weight: 700;
line-height: 1;
color: #fff;
text-align: center;
white-space: nowrap;
vertical-align: baseline;
border-radius: .25em;
}
details {
margin-top: 8em;
}
summary {
margin-bottom: 1em;
cursor: pointer;
}
</style>
</head>

<body>
<h1>{{date}}</h1>
{{#errors.count}}<p>Errors while compiling the digest:</p>
<ul>
{{#errors.list}}<li>{{error}}</li>{{/errors.list}}
</ul>
{{/errors.count}}

<p><a href="https://www.w3.org/2024/03/charters-in-dev.html">{{repo.open_issues_count}} charters</a> in the pipeline.</p>

{{#newissues.count}}<p class="new">{{.}} new charter issues since last report:</p>
<ul>{{#newissues.list}}
<li><a href="{{payload.issue.html_url}}">{{payload.issue.title}}</a> (#{{payload.issue.number}} by {{actor.display_login}}) {{#payload.issue.labels}}<span class="label" style="background-color: #{{color}}; color: #{{text_color}}">{{name}}</span> {{/payload.issue.labels}}</li>
{{/newissues.list}}</ul>
{{/newissues.count}}

{{#commentedissues.count}} <p>{{.}} charter issues received {{issuecommentscount}} new comments:</p>
<ul>{{#commentedissues.list}}
<li><a href="{{url}}">{{title}}</a> (#{{number}}) ({{commentscount}} comments by {{#commentors}}{{name}}{{^last}}, {{/last}}{{/commentors}}) {{#labels}}<span class="label" style="background-color: #{{color}}; color: #{{text_color}}">{{name}}</span> {{/labels}}</li>
{{/commentedissues.list}}</ul>
{{/commentedissues.count}}

{{#closedissues.count}} <p>{{.}} charter issues closed:</p>
<ul>{{#closedissues.list}}
<li><a href="{{payload.issue.html_url}}">{{payload.issue.title}}</a> (#{{payload.issue.number}}) {{#payload.issue.labels}}<span class="label" style="background-color: #{{color}}; color: #{{text_color}}">{{name}}</span> {{/payload.issue.labels}}</li>
{{/closedissues.list}}</ul>
{{/closedissues.count}}

{{/activeissuerepos}}{{/activeissues}}
{{#signature}}
<address>{{.}}</address>
{{/signature}}
</body>
</html>