Skip to content

config

config #50

Workflow file for this run

# Example for using the keymap-drawer ZMK user config workflow
name: Draw ZMK keymaps
on:
workflow_dispatch: # can be triggered manually
push: # automatically run on changes to following paths
paths:
- "config/boards/shields/mlego_m66_rev4/*.keymap"
- "config/boards/shields/mlego_m66_rev4/*.dtsi"
- "config/boards/shields/mlego_m66_rev4/*.json"
- "keymap-drawer/config.yaml"
- ".github/workflows/draw.yml"
# - 'boards/*/*/*.keymap'
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/boards/shields/mlego_m66_rev4/*.keymap" # path to the keymaps to parse
config_path: "keymap-drawer/config.yaml" # config file, ignored if not exists
west_config_path: "config"
output_folder: "keymap-drawer" # path to save produced SVG and keymap YAML files
parse_args: "" # map of extra args to pass to `keymap parse`, e.g. "corne:'-l Def Lwr Rse' cradio:''"
draw_args: "mlego_m66_rev4:'-j config/boards/shields/mlego_m66_rev4/mlego_m66_rev4.json' mlego_m66_rev4_rp2040:'-j config/boards/shields/mlego_m66_rev4/mlego_m66_rev4.json'" # map of extra args to pass to `keymap draw`, e.g. "corne:'-k corne_rotated' cradio:'-k paroxysm'"
amend_commit: true # whether to amend the commit or create a new one
fail_on_error: true