Skip to content

Commit

Permalink
Merge pull request #22 from adRise/fix_missing_inoput
Browse files Browse the repository at this point in the history
add missing input config for `require_auto_merge_enabled`
  • Loading branch information
zhiyelee authored Feb 18, 2024
2 parents 19f65e9 + 54a8b88 commit bf25036
Showing 1 changed file with 10 additions and 6 deletions.
16 changes: 10 additions & 6 deletions action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,13 +4,13 @@ branding:
icon: git-pull-request
color: orange
inputs:
token:
description: 'The GitHub personal access token'
required: true
base:
required: true
description: 'The base branch that this action will use to get PRs'
default: 'master'
direction:
required: false
description: 'The direction of the sort. Can be either `asc` or `desc`. Default: `desc` when `sort` is `created` or `sort` is not specified, otherwise `asc`.'
required_approval_count:
required: true
description: 'The action will skip PRs that have less approvals than this value'
Expand All @@ -19,12 +19,16 @@ inputs:
required: false
description: 'If the action should skip PRs that have failed checks, defaults to `true`'
default: 'true'
require_auto_merge_enabled:
required: false
description: 'When set to false, the action includes PRs without auto-merge; the default true excludes such PRs.'
default: 'true'
sort:
required: false
description: 'What to sort results by. Can be either `created`, `updated`, `popularity` (comment count) or `long-running` (age, filtering by pulls updated in the last month).'
direction:
required: false
description: 'The direction of the sort. Can be either `asc` or `desc`. Default: `desc` when `sort` is `created` or `sort` is not specified, otherwise `asc`.'
token:
description: 'The GitHub personal access token'
required: true

runs:
using: 'node12'
Expand Down

0 comments on commit bf25036

Please sign in to comment.