Skip to content

build(deps-dev): bump phpunit/phpunit from 9.5.28 to 11.5.3 #18

build(deps-dev): bump phpunit/phpunit from 9.5.28 to 11.5.3

build(deps-dev): bump phpunit/phpunit from 9.5.28 to 11.5.3 #18

Workflow file for this run

name: "Tag post merge"
on:
workflow_dispatch:
pull_request:
types:
- closed
branches:
- "main"
jobs:
build:
name: Release
runs-on: ubuntu-latest
if: github.event.pull_request.merged == true
steps:
- name: Create tag
uses: actions/github-script@v7
with:
script: |
github.rest.git.createRef({
owner: context.repo.owner,
repo: context.repo.repo,
ref: "refs/tags/v${{ github.head_ref }}",
sha: context.sha
})