Skip to content

keymap-drawer: fix & improve symbols #7

keymap-drawer: fix & improve symbols

keymap-drawer: fix & improve symbols #7

Workflow file for this run

name: Draw keymaps
on:
workflow_dispatch: # can be triggered manually
push: # automatically run on changes to following paths
paths:
- "config/*.keymap"
- "config/keymap_drawer.yaml"
jobs:
draw:
uses: caksoylar/keymap-drawer/.github/workflows/draw-zmk.yml@main
permissions:
contents: write # allow workflow to commit to the repo
with:
keymap_patterns: "config/*.keymap" # path to the keymaps to parse
config_path: "config/keymap_drawer.yaml" # config file, ignored if not exists
output_folder: "keymap-drawer" # path to save produced SVG and keymap YAML files
parse_args: "" # map of extra args to pass to `keymap parse`
draw_args: "" # map of extra args to pass to `keymap draw`
commit_message: "[Draw] ${{ github.event.head_commit.message }}"