Skip to content

Commit 918d706

Browse files
authored
Merge pull request #961 from Urgau/triagebot-mcp-tracking-issue
Add documentation for triagebot major change tracking issue feature
2 parents dc5fd42 + 3e2adbd commit 918d706

File tree

1 file changed

+20
-0
lines changed

1 file changed

+20
-0
lines changed

src/triagebot/major-changes.md

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -60,6 +60,26 @@ zulip_stream = 233931
6060
# An Zulip group or username to tag in the Zulip message when a
6161
# proposal has been seconded.
6262
zulip_ping = "T-compiler"
63+
64+
# An optional tracking issue template that is automatically created when the major
65+
# is accepted.
66+
#
67+
# There are currently three replacement variables:
68+
# - ${mcp_number}: Issue number of the major change
69+
# - ${mcp_title}: Title of the major change
70+
# - ${mcp_author}: GitHub handle of the author of the major change
71+
[major-change.tracking-issue-template]
72+
# Name of the repository where the tracking issue should be created
73+
repository = "rust"
74+
# Title of tracking issue to create
75+
title = "Tracking issue for MCP#${mcp_number}"
76+
# Body of the tracking issue to create
77+
body = """
78+
Multi line body for MCP#${mcp_number}: ${mcp_title}
79+
Created by @${mcp_author}
80+
"""
81+
# Labels to add to the tracking issue
82+
labels = ["C-tracking-issue", "T-compiler"]
6383
```
6484

6585
## Implementation

0 commit comments

Comments
 (0)