blag
blag
Our Slack adapter automatically chunks up messages that are "too large" (>7900 characters) and sends the message chunks separately, [scheduling the next chunk to send after a 300ms delay](https://github.com/StackStorm/hubot-stackstorm/blob/65f69e0c0aab7a0e5d0d8de0495e5000c79b2c62/src/lib/adapters/slack.js#L210): ```js...
A customer asked for this feature. The `!help` command currently just dumps every command that is loaded by st2chatops. This is due to how hubot commands are loaded (into `robot.commands`)...
Companion PR to [st2#4173](https://github.com/StackStorm/st2/pull/4173). Fixes configuration directory permissions to `2770` and the configuration file permissions to `660`. Fixes #558 Closes #520 Closes #565
Three different people missed the syntax error in #689, leading to #691. We should check that our scripts actually compile as part of the CI for this repository. That's just...
In [`st2/Makefile`](https://github.com/StackStorm/st2/blob/9201950c99f89f9f6208b9167a69b9df0ce057f9/Makefile#L530) we do a neat trick to grab the version of virtualenv to install from the `requirements.txt` file instead of specifying the version in multiple places. We could do...
We use the term "second factor" and "authentication" in the documentation, but the usage of those two terms is confusing and slightly misguiding for users. Every example of what we...
Part of the removal of Ubuntu Trusty. * [ ] Still need to update the `bootstrap.sh` script
In #156 I switched the default st2-docker branch we clone to `DEPRECATED/all-in-one`. This will work for now, but we should be using the `master` branch of st2-docker.
This PR adds Django 4 compatibility. Changes proposed in this PR: - Add support for Django 4+ - Keep compatibility for Django < 4.0 **Tips for an ideal PR** *...
Use raw strings when specifying regexes to ensure that special sequences are not interpreted as escape sequences. Additionally, while they both utilize the backslash `\`, escape sequences (`\n`, `\t`, etc.)...