tools: do not use temp files when merging PRs#57790
Merged
nodejs-github-bot merged 2 commits intonodejs:mainfrom Apr 10, 2025
Merged
tools: do not use temp files when merging PRs#57790nodejs-github-bot merged 2 commits intonodejs:mainfrom
nodejs-github-bot merged 2 commits intonodejs:mainfrom
Conversation
Collaborator
|
Review requested:
|
aduh95
commented
Apr 8, 2025
Co-authored-by: Livia Medeiros <[email protected]>
LiviaMedeiros
approved these changes
Apr 8, 2025
lpinca
approved these changes
Apr 10, 2025
Collaborator
Commit Queue failed- Loading data for nodejs/node/pull/57790 ✔ Done loading data for nodejs/node/pull/57790 ----------------------------------- PR info ------------------------------------ Title tools: do not use temp files when merging PRs (#57790) ⚠ Could not retrieve the email or name of the PR author's from user's GitHub profile! Branch aduh95:merge.sh-tmp-files -> nodejs:main Labels tools, author ready Commits 2 - tools: do not use temp files when merging PRs - Apply suggestions from code review Committers 2 - Antoine du Hamel <[email protected]> - GitHub <[email protected]> PR-URL: https://github.com/nodejs/node/pull/57790 Reviewed-By: LiviaMedeiros <[email protected]> Reviewed-By: Luigi Pinca <[email protected]> ------------------------------ Generated metadata ------------------------------ PR-URL: https://github.com/nodejs/node/pull/57790 Reviewed-By: LiviaMedeiros <[email protected]> Reviewed-By: Luigi Pinca <[email protected]> -------------------------------------------------------------------------------- ℹ This PR was created on Tue, 08 Apr 2025 11:37:11 GMT ✔ Approvals: 2 ✔ - LiviaMedeiros (@LiviaMedeiros): https://github.com/nodejs/node/pull/57790#pullrequestreview-2751143697 ✔ - Luigi Pinca (@lpinca): https://github.com/nodejs/node/pull/57790#pullrequestreview-2757710837 ✔ Last GitHub CI successful ℹ Green GitHub CI is sufficient -------------------------------------------------------------------------------- ✔ No git cherry-pick in progress ✔ No git am in progress ✔ No git rebase in progress -------------------------------------------------------------------------------- - Bringing origin/main up to date... From https://github.com/nodejs/node * branch main -> FETCH_HEAD ✔ origin/main is now up-to-date - Downloading patch for 57790 From https://github.com/nodejs/node * branch refs/pull/57790/merge -> FETCH_HEAD ✔ Fetched commits as f692878dec63..a1779ce5aa2d -------------------------------------------------------------------------------- [main f84b17bb86] tools: do not use temp files when merging PRs Author: Antoine du Hamel <[email protected]> Date: Tue Apr 8 00:18:57 2025 +0200 2 files changed, 16 insertions(+), 30 deletions(-) [main a33199c1c8] Apply suggestions from code review Author: Antoine du Hamel <[email protected]> Date: Tue Apr 8 16:37:39 2025 +0200 2 files changed, 2 insertions(+), 2 deletions(-) ✔ Patches applied There are 2 commits in the PR. Attempting autorebase. Rebasing (2/4) Executing: git node land --amend --yes --------------------------------- New Message ---------------------------------- tools: do not use temp files when merging PRshttps://github.com/nodejs/node/actions/runs/14390757413 |
Collaborator
|
Landed in d5b3dbb |
JonasBa
pushed a commit
to JonasBa/node
that referenced
this pull request
Apr 11, 2025
PR-URL: nodejs#57790 Reviewed-By: LiviaMedeiros <[email protected]> Reviewed-By: Luigi Pinca <[email protected]>
RafaelGSS
pushed a commit
that referenced
this pull request
May 1, 2025
PR-URL: #57790 Reviewed-By: LiviaMedeiros <[email protected]> Reviewed-By: Luigi Pinca <[email protected]>
RafaelGSS
pushed a commit
that referenced
this pull request
May 2, 2025
PR-URL: #57790 Reviewed-By: LiviaMedeiros <[email protected]> Reviewed-By: Luigi Pinca <[email protected]>
aduh95
added a commit
that referenced
this pull request
May 6, 2025
PR-URL: #57790 Reviewed-By: LiviaMedeiros <[email protected]> Reviewed-By: Luigi Pinca <[email protected]>
RafaelGSS
pushed a commit
that referenced
this pull request
May 14, 2025
PR-URL: #57790 Reviewed-By: LiviaMedeiros <[email protected]> Reviewed-By: Luigi Pinca <[email protected]>
aduh95
added a commit
that referenced
this pull request
May 16, 2025
PR-URL: #57790 Reviewed-By: LiviaMedeiros <[email protected]> Reviewed-By: Luigi Pinca <[email protected]>
aduh95
added a commit
that referenced
this pull request
May 17, 2025
PR-URL: #57790 Reviewed-By: LiviaMedeiros <[email protected]> Reviewed-By: Luigi Pinca <[email protected]>
aduh95
added a commit
that referenced
this pull request
May 17, 2025
PR-URL: #57790 Reviewed-By: LiviaMedeiros <[email protected]> Reviewed-By: Luigi Pinca <[email protected]>
aduh95
added a commit
that referenced
this pull request
May 17, 2025
PR-URL: #57790 Reviewed-By: LiviaMedeiros <[email protected]> Reviewed-By: Luigi Pinca <[email protected]>
aduh95
added a commit
that referenced
this pull request
May 19, 2025
PR-URL: #57790 Reviewed-By: LiviaMedeiros <[email protected]> Reviewed-By: Luigi Pinca <[email protected]>
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
IIRC the script was written like this so it could work even without
set -xewhile maintaining a verbose enough output to allow debugging. However, withset -e, it's kind of an unnecessary step, and it's a bit annoying to have those temp files popping up when running the scripts.