Skip to content

Commit

Permalink
/{action.yml, src/}: fix typo (actions#83)
Browse files Browse the repository at this point in the history
  • Loading branch information
coffeegoddd committed Nov 7, 2020
1 parent 1181181 commit a766112
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion action.yml
Expand Up @@ -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'
Expand Down
2 changes: 1 addition & 1 deletion lib/index.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion src/inputs.ts
@@ -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'
2 changes: 1 addition & 1 deletion src/main.ts
Expand Up @@ -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...')
Expand Down

0 comments on commit a766112

Please sign in to comment.