Skip to content

build(deps): bump simple-icons/simple-icons from 13.13.0 to 14.2.0 #19

build(deps): bump simple-icons/simple-icons from 13.13.0 to 14.2.0

build(deps): bump simple-icons/simple-icons from 13.13.0 to 14.2.0 #19

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
})