Skip to content

build(deps-dev): bump @types/node from 20.10.5 to 25.3.3 #84

build(deps-dev): bump @types/node from 20.10.5 to 25.3.3

build(deps-dev): bump @types/node from 20.10.5 to 25.3.3 #84

name: Auto Cherry-Pick from Upstream
on:
workflow_dispatch:
inputs:
base_branch:
description: "Base branch to create the PR against"
required: true
default: "main"
mode:
description: "Run mode: cherry-pick or verify"
required: false
default: "cherry-pick"
script:
description: "Specify the build script to run"
required: false
type: string
default: "npm run all"
pull_request:
types: [opened, synchronize, labeled]
permissions:
contents: write
pull-requests: write
packages: read
issues: write
jobs:
cherry-pick:
if: github.event_name == 'workflow_dispatch' || contains(fromJson(toJson(github.event.pull_request.labels)).*.name, 'review-required')
uses: step-security/reusable-workflows/.github/workflows/auto_cherry_pick.yaml@v1
with:
original-owner: "akhilerm"
repo-name: "tag-push-action"
base_branch: ${{ inputs.base_branch }}
mode: ${{ github.event_name == 'pull_request' && 'verify' || inputs.mode }}
script: ${{ inputs.script || 'npm run all' }}