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.

37 lines
688 B

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