MCPcopy Index your code
hub / github.com/sequelize/sequelize / processCommitsInSeries

Function processCommitsInSeries

dev/release-v6.ts:46–53  ·  view source on GitHub ↗
(github: Octokit, commits: CardCommit[])

Source from the content-addressed store, hash-verified

44// Helpers
45
46async function processCommitsInSeries(github: Octokit, commits: CardCommit[]) {
47 let commit: CardCommit | undefined = commits.shift();
48
49 while (commit) {
50 await mergeCommit(github, commit);
51 commit = commits.shift();
52 }
53}
54
55async function getCommitsFromProject(github: Octokit): Promise<CardCommit[]> {
56 const cards = await github.rest.projects.listCards({

Callers 1

release-v6.tsFile · 0.85

Calls 1

mergeCommitFunction · 0.85

Tested by

no test coverage detected