Skip to content

Commit a766112

Browse files
authored
/{action.yml, src/}: fix typo (#83)
1 parent 1181181 commit a766112

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

action.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ inputs:
2222
message:
2323
description: The message for the commit
2424
required: false
25-
pull_stategy:
25+
pull_strategy:
2626
description: The flag used on the pull strategy
2727
required: false
2828
default: '--no-rebase'

lib/index.js

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

src/inputs.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
// WARNING: this file is auto-generated by scripts/inputs.ts (npm run inputs), any manual edit will be overwritten.
22

3-
export type Input = 'add' | 'author_name' | 'author_email' | 'branch' | 'cwd' | 'message' | 'pull_stategy' | 'remove' | 'signoff' | 'tag'
3+
export type Input = 'add' | 'author_name' | 'author_email' | 'branch' | 'cwd' | 'message' | 'pull_strategy' | 'remove' | 'signoff' | 'tag'

src/main.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ console.log(`Running in ${baseDir}`);
4646
await git
4747
.fetch(undefined, log)
4848
.pull(undefined, undefined, {
49-
[getInput('pull_stategy')]: null
49+
[getInput('pull_strategy')]: null
5050
}, log)
5151

5252
info('> Re-staging files...')

0 commit comments

Comments
 (0)