Files
shockbot/action.yml
T
Colin McDonnell f42dc28da8 chore: prepare action for v0.0.1 release
- Update action.yml to point to dist/index.js
- Add built distribution files
- Update package.json and build configuration
2025-08-27 17:47:25 -07:00

18 lines
354 B
YAML

name: 'Simple Message Action'
description: 'A simple GitHub Action that prints a message to the console'
author: 'Pullfrog'
inputs:
message:
description: 'Message to print to console'
required: true
default: 'Hello from Pullfrog Action!'
runs:
using: 'node20'
main: 'dist/index.js'
branding:
icon: 'message-circle'
color: 'blue'