You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
// When a new issue is opened that is tagged as a tracking issue,
// automatically create a Zulip topic for it and post a comment to the issue.
Event::Issue(IssuesEvent{
action:IssuesAction::Opened,
issue,
..
}) => {
We would presumably want something very similar. I'm imagining that if a new PR is created that adds a new file matching the regex src/\d\d\d\dh\d then we open a Zulip stream like proposal: XXX rust-project-goals#123 with a link to the PR.
The text was updated successfully, but these errors were encountered:
Per rust-lang/rust-project-goals#216, it'd be great to have a new Zulip stream for each PR that adds a new project goal proposal.
Today, the bot detects the creation of new tracking issues and creates a corresponding Zulip thread:
triagebot/src/handlers/project_goals.rs
Lines 222 to 228 in 38b904f
We would presumably want something very similar. I'm imagining that if a new PR is created that adds a new file matching the regex
src/\d\d\d\dh\d
then we open a Zulip stream likeproposal: XXX rust-project-goals#123
with a link to the PR.The text was updated successfully, but these errors were encountered: