mirror of
https://github.com/ivuorinen/gh-action-readme.git
synced 2026-02-08 02:46:59 +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
15 lines
269 B
YAML
15 lines
269 B
YAML
---
|
|
name: 'Simple Action'
|
|
description: 'A simple GitHub Action for testing'
|
|
inputs:
|
|
name:
|
|
description: 'Name to greet'
|
|
required: true
|
|
default: 'World'
|
|
outputs:
|
|
greeting:
|
|
description: 'The greeting message'
|
|
runs:
|
|
using: 'node20'
|
|
main: 'index.js'
|