Skip to content

Merge pull request #116 from jaqx0r/jaqx0r-patch-1 #54

Merge pull request #116 from jaqx0r/jaqx0r-patch-1

Merge pull request #116 from jaqx0r/jaqx0r-patch-1 #54

Workflow file for this run

name: tag new release
on:
push: # for testing
pull_request: # for testing
workflow_dispatch: # manual invocation
schedule:
- cron: "30 5 * * 0"
jobs:
tag:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: mathieudutour/github-tag-action@v6.2
continue-on-error: true # ok to not make a new tag
with:
# Special PAT so that we trigger new workflows, that has contents:write only
github_token: ${{ secrets.TAG_TOKEN }}
create_annotated_tag: true
custom_release_rules: ci:none,chore:none,style:none
dry_run: ${{ github.event_name != 'workflow_dispatch' && github.event_name != 'schedule' }}