Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
15 changes: 15 additions & 0 deletions public/mergify-configuration-schema.json
Original file line number Diff line number Diff line change
Expand Up @@ -2039,6 +2039,11 @@
"title": "GitHub review approved",
"type": "boolean"
},
"github-require-last-push-approval": {
"description": "Whether GitHub's 'Require approval of the most recent reviewable push' is satisfied: the required number of approvals are in from reviewers other than the user who pushed the most recent commit, and approvals submitted against an earlier head no longer count. Mirrors how GitHub's `pullRequest.reviewDecision` evaluates the `require_last_push_approval` branch protection / ruleset option. Returns `true` when no rule on the base branch requires last-push approval, and (leniently) when Mergify has not recorded the most recent push, such as pull requests opened before push tracking.",
"title": "GitHub require last push approval",
"type": "boolean"
},
"number": {
"description": "The pull request number.",
"maximum": 9223372036854775807,
Expand Down Expand Up @@ -2267,6 +2272,14 @@
"title": "Check success",
"type": "array"
},
"check-success-or-neutral": {
"description": "The list of checks that successfully passed or are neutral for the pull request.",
"items": {
"type": "string"
},
"title": "Check success or neutral",
"type": "array"
},
"check-failure": {
"description": "The list of checks that failed for the pull request. Checks that report being cancelled, timed out, and action required are also considered as failures.",
"items": {
Expand Down Expand Up @@ -2597,6 +2610,7 @@
"github-require-review-from-specific-teams",
"github-code-owner-review-satisfied",
"github-review-approved",
"github-require-last-push-approval",
"number",
"queue-position",
"author",
Expand All @@ -2621,6 +2635,7 @@
"changes-requested-reviews-by",
"commented-reviews-by",
"check-success",
"check-success-or-neutral",
"check-failure",
"check-neutral",
"check-timed-out",
Expand Down