Skip to content

Copier update (github action versions) #53

Copier update (github action versions)

Copier update (github action versions) #53

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
permissions:
contents: write
steps:
- uses: actions/checkout@v5.0.0
with:
ref: ${{ github.event.pull_request.merge_commit_sha }}
fetch-depth: '0'
- name: Bump version and push tag
uses: mathieudutour/github-tag-action@v6.2
with:
github_token: ${{ secrets.GITHUB_TOKEN }}