trying to rework database migrations

This commit is contained in:
2026-02-05 11:42:04 -06:00
parent 3b14c65998
commit 343488b3eb
83 changed files with 5793 additions and 876 deletions

View File

@@ -0,0 +1,8 @@
#!/bin/bash
set -e
# Get parameter from environment
MESSAGE="${ATTUNE_ACTION_message:-Hello from basic-pack!}"
# Output JSON result
echo "{\"result\": \"$MESSAGE\"}"

View File

@@ -0,0 +1,27 @@
name: echo
ref: basic-pack.echo
description: "Echo a message"
runner_type: shell
enabled: true
entry_point: echo.sh
parameters:
type: object
properties:
message:
type: string
description: "Message to echo"
default: "Hello from basic-pack!"
required: []
output:
type: object
properties:
result:
type: string
description: "The echoed message"
tags:
- basic
- shell
- example

View File

@@ -0,0 +1,14 @@
ref: basic-pack
label: "Basic Example Pack"
description: "A minimal example pack with a shell action"
version: "1.0.0"
author: "Attune Team"
email: "dev@attune.io"
system: false
enabled: true
tags:
- example
- basic
- shell