From f658b807e432616d111d96adca6a8a24e70d172c Mon Sep 17 00:00:00 2001 From: Nick Alteen Date: Fri, 15 Nov 2024 11:44:30 -0500 Subject: [PATCH] Minor formatting changes --- CODEOWNERS | 6 +++++- action.yml | 14 +++++++------- 2 files changed, 12 insertions(+), 8 deletions(-) diff --git a/CODEOWNERS b/CODEOWNERS index 2e08bd2..da17f53 100644 --- a/CODEOWNERS +++ b/CODEOWNERS @@ -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 diff --git a/action.yml b/action.yml index 101186a..83cf3d3 100644 --- a/action.yml +++ b/action.yml @@ -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