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
We currently match the special "deploy to" messages using regexps that capture the environment name using \S+.
This is too greedy because it prevents writing messages like Deploy #12 to foo: baz. In that case, the environment name is parsed as "foo:".
Instead we should make this more restrictive with something like [\w\.\-]+. That allows environment names to either be identifier-ish strings or hostnames.
The text was updated successfully, but these errors were encountered:
We currently match the special "deploy to" messages using regexps that capture the environment name using
\S+
.This is too greedy because it prevents writing messages like
Deploy #12 to foo: baz
. In that case, the environment name is parsed as "foo:".Instead we should make this more restrictive with something like
[\w\.\-]+
. That allows environment names to either be identifier-ish strings or hostnames.The text was updated successfully, but these errors were encountered: