Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

DOC: chat-ops #38754

Merged
merged 5 commits into from
Dec 30, 2020
Merged
Changes from 4 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
22 changes: 22 additions & 0 deletions doc/source/development/maintaining.rst
Original file line number Diff line number Diff line change
Expand Up @@ -151,6 +151,28 @@ Here are some things to check when reviewing a pull request.
for regression fixes and small bug fixes, the next minor milestone otherwise)
* Changes should comply with our :ref:`policies.version`.

Autofixing formatting errors
----------------------------

We use several styling checks (e.g. ``black``, ``flake8``, ``isort``) which are run after
you make a pull request. If there is a scenario where any of these checks fail then you
can comment::

@github-actions pre-commit

on that pull request. This will trigger a workflow which will autofix formatting errors.
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Sorry for being unclear - this part can go in contributing.rst, it's the backporting section that should go in maintaining.rst


Backporting
-----------

In the case you want to apply changes to a stable branch from a newer branch then you
can comment::

@meeseeksdev backport version-branch

This will trigger a workflow which will backport a given change to a branch
(e.g. @meeseeksdev backport 1.2.x)

Cleaning up old issues
----------------------

Expand Down