Skip to content
Merged
Show file tree
Hide file tree
Changes from all 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
10 changes: 10 additions & 0 deletions .github/workflows/lint.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
name: Lint

on: [pull_request]

jobs:
lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: psf/black@stable
4 changes: 2 additions & 2 deletions kernel_patches_daemon/branch_worker.py
Original file line number Diff line number Diff line change
Expand Up @@ -90,7 +90,7 @@
MERGE_CONFLICT_LABEL = "merge-conflict"
UPSTREAM_REMOTE_NAME = "upstream"


# fmt: off
EMAIL_TEMPLATE_BASE: Final[str] = """\
Dear patch submitter,

Expand Down Expand Up @@ -123,7 +123,7 @@

{inline_logs}\
"""

# fmt: on

# Context used to format email notification body
EmailBodyContext = namedtuple(
Expand Down