Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: semantic-release/git
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: v7.0.17
Choose a base ref
...
head repository: semantic-release/git
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: v7.0.18
Choose a head ref
  • 2 commits
  • 2 files changed
  • 1 contributor

Commits on Nov 5, 2019

  1. Unverified

    This commit is not signed, but one or more authors requires that any commit attributed to them is signed.
    Copy the full SHA
    8fda503 View commit details
  2. fix: use correct debug scope

    pvdlg committed Nov 5, 2019
    Copy the full SHA
    3323aac View commit details
Showing with 2 additions and 2 deletions.
  1. +1 −1 lib/glob-assets.js
  2. +1 −1 test/prepare.test.js
2 changes: 1 addition & 1 deletion lib/glob-assets.js
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
const {isPlainObject, castArray, uniq} = require('lodash');
const dirGlob = require('dir-glob');
const globby = require('globby');
const debug = require('debug')('semantic-release:github');
const debug = require('debug')('semantic-release:git');

module.exports = async ({cwd}, assets) =>
uniq(
2 changes: 1 addition & 1 deletion test/prepare.test.js
Original file line number Diff line number Diff line change
@@ -62,7 +62,7 @@ test('Exclude CHANGELOG.md, package.json, package-lock.json, and npm-shrinkwrap.
t.deepEqual(await gitCommitedFiles('HEAD', {cwd, env}), []);
});

test.serial('Allow to customize the commit message', async t => {
test('Allow to customize the commit message', async t => {
const {cwd, repositoryUrl} = await gitRepo(true);
const pluginConfig = {
message: `Release version \${nextRelease.version} from branch \${branch}