| FazBrowse GitHub Viewer | Trending | | Home |
| Tools: [Download Repo ZIP] [Original HTTPS Page] |
1 parent 7afb67f commit 46766a1
2 files changed
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
@@ -43,7 +43,10 @@ The Commit Queue feature is still in early stages, and as such it might not | |||
| 43 | 43 | work for more complex Pull Requests. These are the currently known limitations | |
| 44 | 44 | of the commit queue: | |
| 45 | 45 | ||
| 46 | - 1. The Pull Request must have only one commit | ||
| 46 | + 1. All commits in a Pull Request must either be following commit message | ||
| 47 | + guidelines or be a valid [`fixup!`](https://git-scm.com/docs/git-commit#Documentation/git-commit.txt---fixupltcommitgt) | ||
| 48 | + commits that will be correctly handled by [`--autosquash`](https://git-scm.com/docs/git-rebase#Documentation/git-rebase.txt---autosquash) | ||
| 49 | + option | ||
| 47 | 50 | 2. A CI must've ran and succeeded since the last change on the PR | |
| 48 | 51 | 3. A Collaborator must have approved the PR since the last change | |
| 49 | 52 | 4. Only Jenkins CI is checked (Actions, V8 CI and CITGM are ignored) | |
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
@@ -55,7 +55,7 @@ for pr in "$@"; do | |||
| 55 | 55 | # Delete the commit queue label | |
| 56 | 56 | gitHubCurl "$(labelsUrl "$pr")"/"$COMMIT_QUEUE_LABEL" DELETE | |
| 57 | 57 | ||
| 58 | - git node land --yes "$pr" >output 2>&1 || echo "Failed to land #${pr}" | ||
| 58 | + git node land --autorebase --yes "$pr" >output 2>&1 || echo "Failed to land #${pr}" | ||
| 59 | 59 | # cat here otherwise we'll be supressing the output of git node land | |
| 60 | 60 | cat output | |
| 61 | 61 | ||
| Back | FazBrowse Home | New Git URL |
0 commit comments