diff options
author | QMK Bot <hello@qmk.fm> | 2020-12-06 12:54:36 +0000 |
---|---|---|
committer | QMK Bot <hello@qmk.fm> | 2020-12-06 12:54:36 +0000 |
commit | e31671ece0d4197dccb66512bca172fb2ff4aea7 (patch) | |
tree | 7c489e10221079a5488a67a120499fefe493b0a4 /.github | |
parent | 3aa2c122e14aea81725ffbc0f1ca0426565a6e39 (diff) | |
parent | 8d6ad23b096ed2fc4d8fd0e6781fca30b87b343f (diff) |
Merge remote-tracking branch 'origin/master' into develop
Diffstat (limited to '.github')
-rw-r--r-- | .github/workflows/auto_tag.yaml | 32 |
1 files changed, 32 insertions, 0 deletions
diff --git a/.github/workflows/auto_tag.yaml b/.github/workflows/auto_tag.yaml new file mode 100644 index 0000000000..e6a1d52b38 --- /dev/null +++ b/.github/workflows/auto_tag.yaml @@ -0,0 +1,32 @@ +name: Essential files modified + +on: + push: + branches: + - master + paths: + - quantum/**/* + - tmk_core/**/* + - drivers/**/* + - tests/**/* + - util/**/* + - platforms/**/* + - 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@v2 + with: + fetch-depth: 0 + + - name: Bump version and push tag + uses: anothrNick/github-tag-action@1.26.0 + env: + GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} |