-
Notifications
You must be signed in to change notification settings - Fork 18
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: group commit files into batches (#398)
* feat: group commit files into batches * test: split on commits, not trees * chore: remove debug logging
- Loading branch information
Showing
10 changed files
with
163 additions
and
51 deletions.
There are no files selected for viewing
This file contains 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
This file contains 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
This file contains 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
This file contains 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
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,48 @@ | ||
// Copyright 2022 Google LLC | ||
// | ||
// Licensed under the Apache License, Version 2.0 (the "License"); | ||
// you may not use this file except in compliance with the License. | ||
// You may obtain a copy of the License at | ||
// | ||
// https://www.apache.org/licenses/LICENSE-2.0 | ||
// | ||
// Unless required by applicable law or agreed to in writing, software | ||
// distributed under the License is distributed on an "AS IS" BASIS, | ||
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
// See the License for the specific language governing permissions and | ||
// limitations under the License. | ||
|
||
import {Octokit} from '@octokit/rest'; | ||
import {RepoDomain} from '../types'; | ||
import {logger} from '../logger'; | ||
|
||
/** | ||
* Create a commit with a repo snapshot SHA on top of the reference HEAD | ||
* and resolves with the SHA of the commit. | ||
* Rejects if GitHub V3 API fails with the GitHub error response | ||
* @param {Octokit} octokit The authenticated octokit instance | ||
* @param {RepoDomain} origin the the remote repository to push changes to | ||
* @param {string} refHead the base of the new commit(s) | ||
* @param {string} treeSha the tree SHA that this commit will point to | ||
* @param {string} message the message of the new commit | ||
* @returns {Promise<string>} the new commit SHA | ||
*/ | ||
export async function createCommit( | ||
octokit: Octokit, | ||
origin: RepoDomain, | ||
refHead: string, | ||
treeSha: string, | ||
message: string | ||
): Promise<string> { | ||
const commitData = ( | ||
await octokit.git.createCommit({ | ||
owner: origin.owner, | ||
repo: origin.repo, | ||
message, | ||
tree: treeSha, | ||
parents: [refHead], | ||
}) | ||
).data; | ||
logger.info(`Successfully created commit. See commit at ${commitData.url}`); | ||
return commitData.sha; | ||
} |
This file contains 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
This file contains 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
This file contains 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
This file contains 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
This file contains 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