Skip to content

Copier update: CI success check #64

Copier update: CI success check

Copier update: CI success check #64

Workflow file for this run

name: Tag on Merge to Main
on:
pull_request:
types:
- closed
branches:
- main
jobs:
create-tag:
if: github.event.pull_request.merged == true
runs-on: ubuntu-24.04
timeout-minutes: 2
permissions:
contents: write
steps:
- uses: actions/checkout@v6.0.1
with:
ref: ${{ github.event.pull_request.merge_commit_sha }}
fetch-depth: '0'
persist-credentials: false
- name: Bump version and push tag
uses: mathieudutour/github-tag-action@a22cf08638b34d5badda920f9daf6e72c477b07b # v6.2
with:
github_token: ${{ secrets.GITHUB_TOKEN }}