Added many, many more actions.

This commit is contained in:
2025-06-24 15:24:16 -07:00
parent 62fbe4dead
commit 57ef232d2b
108 changed files with 4212 additions and 7 deletions

24
yq/yq/action.yaml Normal file
View File

@@ -0,0 +1,24 @@
name: yq
description: "Run yq commands."
inputs:
command:
description: "Shell arguments to pass into yq."
required: true
program:
description: "Program to run instead of yq. Default: yq"
required: false
default: "yq"
catchErrors:
description: "Whether or not errors should be handled."
required: false
outputs:
console:
description: "The console output of the command."
runs:
env:
PROGRAM: ${{ inputs.program }}
CATCH_ERRORS: ${{ inputs.catchErrors }}
using: docker
image: Dockerfile
args:
- ${{ inputs.command }}