Create JS action

This commit is contained in:
Colin McDonnell
2025-08-27 16:53:48 -07:00
parent 2cacf2ada3
commit c5b1e63811
10 changed files with 549 additions and 3 deletions
+17
View File
@@ -0,0 +1,17 @@
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: 'index.js'
branding:
icon: 'message-circle'
color: 'blue'