-
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.
Merge pull request #1813 from apiraino/rework-backport-template-compi…
…ler-triage-agenda Rework backport template compiler triage meeting
- Loading branch information
Showing
7 changed files
with
32 additions
and
41 deletions.
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
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 |
---|---|---|
@@ -1,4 +1,18 @@ | ||
{% macro render(issue, with_age="") %}"{{issue.title}}" [{{issue.repo_name}}#{{issue.number}}]({{issue.html_url}}){% if issue.mcp_details.zulip_link %} ([Zulip]({{issue.mcp_details.zulip_link}})){% endif %}{% if with_age %} (last review activity: {{issue.updated_at_hts}}){%- endif -%} | ||
{% macro render(issue, with_age="", backport_branch="") %}"{{issue.title}}" [{{issue.repo_name}}#{{issue.number}}]({{issue.html_url}}){% if issue.mcp_details.zulip_link %} ([Zulip]({{issue.mcp_details.zulip_link}})){% endif %}{% if with_age %} (last review activity: {{issue.updated_at_hts}}){%- endif -%} | ||
{%- if backport_branch != "" %} | ||
- Authored by {{ issue.author }} | ||
{%- endif -%} | ||
{% if issue.mcp_details.concerns %}{%- for concern in issue.mcp_details.concerns %} | ||
- concern: [{{- concern.0 -}}]({{- concern.1 -}}) | ||
{%- endfor -%}{% endif -%}{% endmacro %} | ||
{%- endfor -%}{%- endif -%} | ||
{%- if backport_branch %} | ||
<!-- | ||
/poll Approve {{ backport_branch | trim_start_matches(pat=":") | trim_end_matches(pat=":") }} backport of #{{issue.number}}? | ||
approve | ||
{%- if backport_branch is containing("stable") %} | ||
approve but does not justify new dot release | ||
decline | ||
{%- endif %} | ||
don't know | ||
--> | ||
{%- endif %}{% endmacro %} |
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 |
---|---|---|
@@ -1,11 +1,7 @@ | ||
{% import "_issue.tt" as issue %} | ||
|
||
{% macro render(issues, indent="", branch="", with_age=false, empty="No issues at this time.") %} | ||
{#- If "branch" is not empty add a trailing space but no newlines before or after -#} | ||
{%- if branch -%} | ||
{%- set branch = branch ~ " " -%} | ||
{%- endif -%} | ||
{% macro render(issues, indent="", backport_branch="", with_age=false, empty="No issues at this time.") %} | ||
{%- for issue in issues %} | ||
{{indent}}- {{ branch }}{{issue::render(issue=issue, with_age=with_age)}}{% else %} | ||
{{indent}}- {{ backport_branch }} {{issue::render(issue=issue, with_age=with_age, backport_branch=backport_branch)}}{% else %} | ||
{{indent}}- {{empty}}{% endfor -%} | ||
{% endmacro %} |
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