Minor formatting changes

This commit is contained in:
Nick Alteen
2024-11-15 11:44:30 -05:00
parent 970fe4ae16
commit f658b807e4
2 changed files with 12 additions and 8 deletions

View File

@ -1,3 +1,7 @@
# Repository CODEOWNERS
############################################################################
# Repository CODEOWNERS #
# Order is important! The last matching pattern takes the most precedence. #
############################################################################
# Default owners, unless a later match takes precedence.
* @actions/actions-oss-maintainers

View File

@ -1,23 +1,23 @@
name: 'The name of your action here'
description: 'Provide a description here'
author: 'Your name or organization here'
name: The name of your action here
description: Provide a description here
author: Your name or organization here
# Add your action's branding here. This will appear on the GitHub Marketplace.
branding:
icon: 'heart'
color: 'red'
icon: heart
color: red
# Define your inputs here.
inputs:
milliseconds:
description: 'Your input description here'
description: Your input description here
required: true
default: '1000'
# Define your outputs here.
outputs:
time:
description: 'Your output description here'
description: Your output description here
runs:
using: node20