mirror of
https://github.com/n8n-io/n8n
synced 2026-04-21 15:47:20 +00:00
27 lines
763 B
YAML
27 lines
763 B
YAML
name: 'Util: Ensure release candidate branches'
|
|
|
|
on:
|
|
workflow_dispatch:
|
|
workflow_call:
|
|
|
|
jobs:
|
|
ensure-release-candidate-branches:
|
|
name: Ensure release-candidate branches
|
|
runs-on: ubuntu-slim
|
|
permissions:
|
|
contents: write
|
|
steps:
|
|
- name: Checkout
|
|
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
|
|
with:
|
|
fetch-depth: 0
|
|
fetch-tags: true
|
|
|
|
- name: Setup NodeJS
|
|
uses: ./.github/actions/setup-nodejs
|
|
with:
|
|
build-command: ''
|
|
install-command: pnpm install --frozen-lockfile --dir ./.github/scripts --ignore-workspace
|
|
|
|
- name: Ensure release-candidate branches
|
|
run: node ./.github/scripts/ensure-release-candidate-branches.mjs
|