Admin message

Due to a large amount of spam we do not allow new users to create repositories, they are "external" users. If you are a new user and want to create a repository, for example for forking GHC, open a new issue on ghc/ghc using the "get-verified" issue template

Backtraces from `throwSTM`
## Summary Unlike other monadic throw operations such as `throwIO`, `throwSTM` does not have a `HasCallStack` constraint and does not use `toExceptionWithBacktrace`. I think it probably should. However, `toExceptionWithBacktrace` requires `IO`, and it's unclear whether it would be safe to use it. ## Steps to reproduce Throw an exception with `throwSTM`, observe that it has no backtrace. ## Expected behavior I would expect to at least get call stacks from `HasCallStack`.
issue