initial commit of action

This commit is contained in:
Sebastian Rollen
2021-06-28 10:06:44 -04:00
commit 1b055e6e6a
355 changed files with 77131 additions and 0 deletions

16
action.yml Normal file
View File

@@ -0,0 +1,16 @@
name: 'TOML Reader'
description: 'Read a specific field from a TOML file'
inputs:
file:
description: 'The TOML file to read from'
required: true
field:
description: 'The field inside the TOML file to read'
required: true
outputs:
value:
description: 'The data stored in `field` inside `file`'
runs:
using: 'node12'
main: 'index.js'