minor remap #4
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# 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: | |
- '*.keymap' | |
jobs: | |
draw: | |
permissions: | |
contents: write | |
uses: caksoylar/keymap-drawer/.github/workflows/draw-zmk.yml@main | |
with: | |
keymap_patterns: "*.keymap" # path to the keymaps to parse | |
config_path: "keymap_drawer.config.yaml" # config file, ignored if not exists | |
output_folder: "svg" # path to save produced SVGs | |
parse_args: "" # map of extra args to pass to `keymap parse`, e.g. "corne:'-l Def Lwr Rse' cradio:''" | |
draw_args: "" # map of extra args to pass to `keymap draw`, e.g. "corne:'-k corne_rotated' cradio:'-k paroxysm'" |