Skip to content

Commit

Permalink
add draw workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
stijnveenman committed Jul 8, 2024
1 parent c03a9d9 commit 01a9517
Showing 1 changed file with 19 additions and 0 deletions.
19 changes: 19 additions & 0 deletions .github/workflows/draw.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
# 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/*.keymap"
- "config/*.dtsi"
- "keymap_drawer.config.yaml"
# - 'boards/*/*/*.keymap'

jobs:
draw:
uses: stijnveenman/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
destination: 'artifact'

0 comments on commit 01a9517

Please sign in to comment.