Skip to content

⚠️ Release

⚠️ Release #1116

Workflow file for this run

name: ⚠️ Release
on:
workflow_dispatch:
inputs:
mode:
type: choice
description: Bump version as requested
required: false
default: minor
options:
- patch
- minor
- major
schedule:
- cron: '0 7 * * 1'
jobs:
release:
runs-on: ubuntu-latest
if: "!contains(github.event.head_commit.message, 'chore(release)')"
steps:
- uses: actions/[email protected]
- uses: taiga-family/ci/actions/run/[email protected]
with:
ref: ${{ github.ref }}
mode: ${{ github.event.inputs.mode }}
npmToken: ${{ secrets.TAIGA_UI_SCOPE_NPM_TOKEN }}
githubToken: ${{ secrets.TAIGA_FAMILY_BOT_PAT }}
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true