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.

33 lines
635 B

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