You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

38 lines
709 B

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