Skip to content

Commit

Permalink
prRunsContextOrder can be const
Browse files Browse the repository at this point in the history
  • Loading branch information
sindrig committed Nov 8, 2023
1 parent ebd2385 commit e338365
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/main.ts
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ async function run(): Promise<void> {
const protectedBranchNamePattern = core.getInput(
'protectedBranchNamePattern'
)
let prRunsContextOrder = core.getInput('prChecksFetchOrder')
const prRunsContextOrder = core.getInput('prChecksFetchOrder')
switch (prRunsContextOrder) {
case 'first':
case 'last':
Expand Down

0 comments on commit e338365

Please sign in to comment.