How to filter emails from GitHub in Gmail and flag them with labels.
The labels in this document are just examples.
| Filter | Label |
|---|
| [ | |
| { | |
| "context": "Editor && VimControl && !VimWaiting && !menu", | |
| "bindings": { | |
| "ctrl-w z": "workspace::ToggleZoom", | |
| "ctrl-w t": "terminal_panel::ToggleFocus", | |
| "g ]": "editor::GoToDiagnostic", | |
| "g [": "editor::GoToPrevDiagnostic", | |
| "g r": "editor::FindAllReferences", | |
| "shift-k": "editor::Hover", |
| FROM golang:1.21.0-bullseye as builder | |
| COPY . /workdir | |
| WORKDIR /workdir | |
| ENV CGO_CPPFLAGS="-D_FORTIFY_SOURCE=2 -fstack-protector-all" | |
| ENV GOFLAGS="-buildmode=pie" | |
| RUN go build -ldflags "-s -w" -trimpath ./cmd/app |