qmk_firmware

QMK firmware for my keyboards (Corne, Sweep Ferris) and trackball (Ploopy Adept)
Log | Files | Refs | Submodules | LICENSE

auto_tag.yml (731B)


      1 name: Essential files modified
      2 
      3 permissions:
      4   contents: write
      5 
      6 on:
      7   workflow_dispatch:
      8   push:
      9     branches:
     10     - master
     11     paths:
     12     - builddefs/**/*
     13     - drivers/**/*
     14     - platforms/**/*
     15     - quantum/**/*
     16     - tests/**/*
     17     - tmk_core/**/*
     18     - lib/python/**/*
     19     - util/**/*
     20     - Makefile
     21     - '*.mk'
     22 
     23 jobs:
     24   tag:
     25     runs-on: ubuntu-latest
     26 
     27     # protect against those who develop with their fork on master
     28     if: github.repository == 'qmk/qmk_firmware'
     29 
     30     steps:
     31     - uses: actions/checkout@v6
     32       with:
     33         fetch-depth: 0
     34 
     35     - name: Bump version and push tag
     36       uses: anothrNick/github-tag-action@1.66.0
     37       env:
     38         GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
     39         DEFAULT_BUMP: 'patch'