Skip to content

Commit

Permalink
feat(CD): get commits from latest commit to latest tag (#3693)
Browse files Browse the repository at this point in the history
  • Loading branch information
kobenguyent committed Jun 24, 2023
1 parent 9c92294 commit bcf1cbb
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions runok.js
Original file line number Diff line number Diff line change
Expand Up @@ -428,6 +428,12 @@ title: ${name}
await exec(`git checkout -b release-${newVersion}`);
}
},

async getCommitLog() {
console.log('Gathering commits...');
const logs = await exec('git log --pretty=\'format:%s - by %aN\' $(git describe --abbrev=0 --tags)..HEAD');
console.log(logs.data.stdout);
},
};

async function processChangelog() {
Expand Down

0 comments on commit bcf1cbb

Please sign in to comment.