-
-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathaction.yml
More file actions
26 lines (22 loc) · 641 Bytes
/
action.yml
File metadata and controls
26 lines (22 loc) · 641 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
# This is a definition file for a GitHub Action.
# See: https://help.github.com/en/articles/creating-a-docker-container-action
# We also define metadata here:
# See: https://help.github.com/en/articles/metadata-syntax-for-github-actions
name: 'misspell-fixer-action'
description: 'Runs misspell-fixer as a GitHub Action'
branding:
icon: 'bookmark'
color: 'green'
inputs:
options:
description: 'Any options for misspell-fixes tool'
required: false
default: '-rsvn .'
outputs:
output:
description: 'The output of misspell-fixer run'
runs:
using: 'docker'
image: 'Dockerfile'
args:
- ${{ inputs.options }}