Bump golangci/golangci-lint-action from 3.6.0 to 3.7.0 (#23) #19
This file contains 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
# Regarding bumping the tags of the project, it will be done via commit messages containing | |
# #major, #minor or #patch string in the commit msg. Read more below. | |
# Automatic Bumping: If no #major, #minor or #patch tag is contained in the merge commit message, | |
# it will bump whichever DEFAULT_BUMP is set to (which is minor by default). | |
# Disable this by setting DEFAULT_BUMP to none. https://github.com/anothrNick/github-tag-action | |
name: 'tag' | |
on: | |
push: | |
branches: | |
- main | |
jobs: | |
tag: | |
runs-on: ubuntu-latest | |
steps: | |
- name: 'Checkout' | |
uses: actions/checkout@v3 | |
- name: 'Tag' | |
uses: anothrNick/[email protected] | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
WITH_V: true | |
DEFAULT_BUMP: none |