Imported AI generated TypeScript action skeleton.

This commit is contained in:
2026-01-10 22:04:18 +01:00
commit e7d0039424
7 changed files with 291 additions and 0 deletions

17
action.yml Normal file
View File

@@ -0,0 +1,17 @@
name: 'Setup Tool'
description: 'Download and setup a tool'
author: 'GitHub Copilot'
inputs:
tool-url:
description: 'The URL of the tool to download'
required: true
tool-name:
description: 'The name of the tool'
required: true
version:
description: 'The version of the tool'
required: false
default: 'latest'
runs:
using: 'node24'
main: 'dist/index.js'