Skip to content

Commit

Permalink
Merge pull request #351 from linear-b/wait_for_all_checks-improvement
Browse files Browse the repository at this point in the history
checks are completed with conclusion
  • Loading branch information
vim-zz authored Nov 9, 2023
2 parents 3e1d7a8 + cbadeb2 commit ec0f6f2
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions docs/automation-actions.md
Original file line number Diff line number Diff line change
Expand Up @@ -166,7 +166,7 @@ This action, once triggered, sets a specific reviewer.
| `team_reviewers` | Optional | [String] | Sets required team reviewers without a prefix `team` |
| `unless_reviewers_set` | Optional | Bool | When `true`, the reviewers are not added if the PR has already assigned reviewers. It is set to `false` by default |
| `fail_on_error` | Optional | Bool | When `true`, trying to assign illegal reviewers shall fail the automation, when `false` these errors are silently ignored. It is set to `true` by default |
| `wait_for_all_checks`| Optional | Boolean | By default `false`. When `true`, the action will add reviewers only if all checks (except gitStream) have passed |
| `wait_for_all_checks`| Optional | Boolean | By default `false`. When `true`, the action will add reviewers only if all checks (except gitStream) are completed with `neutral`, `skipped`, or `success` conclusion |

</div>

Expand Down Expand Up @@ -251,7 +251,7 @@ Once triggered, merge the PR if possible. It can be set to wait for all checks t

| Args | Usage | Type | Description |
| -----------|------|-----|------------------------------------------------ |
| `wait_for_all_checks`| Optional | Boolean | By default `false`, so only Required checks can block merge, when `true` the action won't merge even if non-Required check fail (except gitStream itself) |
| `wait_for_all_checks`| Optional | Boolean | By default `false`, so only Required checks can block merge, when `true` the action will merge after all checks are completed with `neutral`, `skipped`, or `success` conclusion (except gitStream itself) |
| `rebase_on_merge`| Optional | Boolean | By default `false`, when merging use rebase mode |
| `squash_on_merge`| Optional | Boolean | By default `false`, when merging use squash mode |

Expand Down

0 comments on commit ec0f6f2

Please sign in to comment.