Added checkout to discord-notify as well #8
Workflow file for this run
This file contains hidden or 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
name: Auto Tag | |
on: | |
push: | |
branches: | |
- master | |
- '**' | |
permissions: | |
contents: write | |
jobs: | |
tag: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
fetch-depth: 0 # Needed to access all tags | |
- name: Create tag using commit message | |
id: tagger | |
uses: mathieudutour/[email protected] | |
with: | |
tag_prefix: 'v' | |
default_bump: 'patch' | |
default_prerelease_bump: 'prerelease' | |
dry_run: false # Set to false for actual tagging in production | |
github_token: ${{ secrets.GITHUB_TOKEN }} | |