mirror of
https://github.com/twentyhq/twenty
synced 2026-04-21 13:37:22 +00:00
Created this empty workflow so it appears on main and is pickable from a different branch to start testing the whole flow
18 lines
327 B
YAML
18 lines
327 B
YAML
name: CI Cross-Version Upgrade
|
|
|
|
permissions:
|
|
contents: read
|
|
|
|
on:
|
|
push:
|
|
tags:
|
|
- 'v[0-9]+.[0-9]+.[0-9]+'
|
|
workflow_dispatch:
|
|
|
|
jobs:
|
|
cross-version-upgrade:
|
|
timeout-minutes: 45
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: Placeholder
|
|
run: echo "Cross-version upgrade CI — not yet implemented"
|