We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent aabfcc4 commit c8abc46Copy full SHA for c8abc46
generateNotes.js
@@ -2,7 +2,7 @@ const changelog = require('conventional-changelog')
2
const parseUrl = require('github-url-from-git')
3
const execSync = require('child_process').execSync;
4
5
-const describe = () => execSync('git describe --tags master', { encoding: 'utf8' });
+const describe = () => execSync('git describe --tags origin/master', { encoding: 'utf8' });
6
const baseTag = (tag) => tag.replace(/(v[0-9.]+)(.*)/, '$1').trim();
7
const lastTag = () => baseTag(describe());
8
0 commit comments