/{action.yml, src/}: fix typo (#83)

This commit is contained in:
Dustin Brown
2020-11-07 04:50:19 -08:00
committed by GitHub
parent 1181181b70
commit a7661122af
4 changed files with 4 additions and 4 deletions

View File

@@ -22,7 +22,7 @@ inputs:
message:
description: The message for the commit
required: false
pull_stategy:
pull_strategy:
description: The flag used on the pull strategy
required: false
default: '--no-rebase'

File diff suppressed because one or more lines are too long

View File

@@ -1,3 +1,3 @@
// WARNING: this file is auto-generated by scripts/inputs.ts (npm run inputs), any manual edit will be overwritten.
export type Input = 'add' | 'author_name' | 'author_email' | 'branch' | 'cwd' | 'message' | 'pull_stategy' | 'remove' | 'signoff' | 'tag'
export type Input = 'add' | 'author_name' | 'author_email' | 'branch' | 'cwd' | 'message' | 'pull_strategy' | 'remove' | 'signoff' | 'tag'

View File

@@ -46,7 +46,7 @@ console.log(`Running in ${baseDir}`);
await git
.fetch(undefined, log)
.pull(undefined, undefined, {
[getInput('pull_stategy')]: null
[getInput('pull_strategy')]: null
}, log)
info('> Re-staging files...')