Fix typo in Battery Driver docs (#25312) #5
This file contains hidden or 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
| name: Essential files modified | |
| permissions: | |
| contents: write | |
| on: | |
| workflow_dispatch: | |
| push: | |
| branches: | |
| - master | |
| paths: | |
| - builddefs/**/* | |
| - drivers/**/* | |
| - platforms/**/* | |
| - quantum/**/* | |
| - tests/**/* | |
| - tmk_core/**/* | |
| - lib/python/**/* | |
| - util/**/* | |
| - Makefile | |
| - '*.mk' | |
| jobs: | |
| tag: | |
| runs-on: ubuntu-latest | |
| # protect against those who develop with their fork on master | |
| if: github.repository == 'qmk/qmk_firmware' | |
| steps: | |
| - uses: actions/checkout@v4 | |
| with: | |
| fetch-depth: 0 | |
| - name: Bump version and push tag | |
| uses: anothrNick/[email protected] | |
| env: | |
| GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
| DEFAULT_BUMP: 'patch' |