mirror of
https://github.com/ivuorinen/gh-action-readme.git
synced 2026-02-04 02:44:56 +00:00
* chore(lint): funcorder * chore(lint): yamlfmt, ignored broken test yaml files * chore(tests): tests do not output garbage, add coverage * chore(lint): fix editorconfig violations * chore(lint): move from eclint to editorconfig-checker * chore(lint): add pre-commit, run and fix * chore(ci): we use renovate to manage updates
24 lines
479 B
YAML
24 lines
479 B
YAML
---
|
|
name: 'Basic Docker Action'
|
|
description: 'A simple Docker-based action'
|
|
inputs:
|
|
command:
|
|
description: 'Command to execute in the container'
|
|
required: true
|
|
args:
|
|
description: 'Arguments for the command'
|
|
required: false
|
|
default: ''
|
|
outputs:
|
|
result:
|
|
description: 'Result of the command execution'
|
|
runs:
|
|
using: 'docker'
|
|
image: 'Dockerfile'
|
|
args:
|
|
- ${{ inputs.command }}
|
|
- ${{ inputs.args }}
|
|
branding:
|
|
icon: 'package'
|
|
color: 'blue'
|