Skip to content

Commit

Permalink
fix: rename default branch
Browse files Browse the repository at this point in the history
  • Loading branch information
pvdlg committed Nov 28, 2018
1 parent d6d1bc9 commit 7a9922a
Show file tree
Hide file tree
Showing 7 changed files with 7 additions and 12 deletions.
4 changes: 2 additions & 2 deletions .travis.yml
Expand Up @@ -7,11 +7,11 @@ node_js:
- 10
- 8

# Trigger a push build on caribou and greenkeeper branches + PRs build on every branches
# Trigger a push build on master and greenkeeper branches + PRs build on every branches
# Avoid double build on PRs (See https://github.com/travis-ci/travis-ci/issues/1147)
branches:
only:
- caribou
- master
- /^greenkeeper.*$/

# Retry install on fail to avoid failing a build on network/disk/external errors
Expand Down
4 changes: 2 additions & 2 deletions README.md
Expand Up @@ -5,10 +5,10 @@
<img alt="Gitter" src="https://badges.gitter.im/semantic-release/semantic-release.svg">
</a>
<a href="https://travis-ci.org/semantic-release/semantic-release">
<img alt="Travis" src="https://img.shields.io/travis/semantic-release/semantic-release/caribou.svg">
<img alt="Travis" src="https://img.shields.io/travis/semantic-release/semantic-release/master.svg">
</a>
<a href="https://codecov.io/gh/semantic-release/semantic-release">
<img alt="Codecov" src="https://img.shields.io/codecov/c/github/semantic-release/semantic-release/caribou.svg">
<img alt="Codecov" src="https://img.shields.io/codecov/c/github/semantic-release/semantic-release/master.svg">
</a>
<a href="https://greenkeeper.io">
<img alt="Greenkeeper" src="https://badges.greenkeeper.io/semantic-release/semantic-release.svg">
Expand Down
2 changes: 1 addition & 1 deletion bin/semantic-release.js
Expand Up @@ -16,7 +16,7 @@ if (!semver.satisfies(process.version, pkg.engines.node)) {
console.error(
`[semantic-release]: node version ${pkg.engines.node} is required. Found ${process.version}.
See https://github.com/semantic-release/semantic-release/blob/caribou/docs/support/node-version.md for more details and solutions.`
See https://github.com/semantic-release/semantic-release/blob/master/docs/support/node-version.md for more details and solutions.`
);
process.exit(1);
}
Expand Down
2 changes: 0 additions & 2 deletions codecov.yml

This file was deleted.

2 changes: 1 addition & 1 deletion docs/extending/plugins-list.md
Expand Up @@ -35,7 +35,7 @@

## Community plugins

[Open a Pull Request](https://github.com/semantic-release/semantic-release/blob/caribou/CONTRIBUTING.md#submitting-a-pull-request) to add your plugin to the list.
[Open a Pull Request](https://github.com/semantic-release/semantic-release/blob/master/CONTRIBUTING.md#submitting-a-pull-request) to add your plugin to the list.

- [semantic-release-docker](https://github.com/felixfbecker/semantic-release-docker)
- `verifyConditions`: Verify that all needed configuration is present and login to the Docker registry.
Expand Down
2 changes: 1 addition & 1 deletion lib/definitions/errors.js
Expand Up @@ -6,7 +6,7 @@ const {RELEASE_TYPE} = require('./constants');

const homepage = url.format({...url.parse(pkg.homepage), hash: null});
const stringify = obj => (isString(obj) ? obj : inspect(obj, {breakLength: Infinity, depth: 2, maxArrayLength: 5}));
const linkify = file => `${homepage}/blob/caribou/${file}`;
const linkify = file => `${homepage}/blob/master/${file}`;

module.exports = {
ENOGITREPO: ({cwd}) => ({
Expand Down
3 changes: 0 additions & 3 deletions package.json
Expand Up @@ -112,9 +112,6 @@
"publishConfig": {
"tag": "next"
},
"release": {
"branch": "caribou"
},
"repository": {
"type": "git",
"url": "git+https://github.com/semantic-release/semantic-release.git"
Expand Down

0 comments on commit 7a9922a

Please sign in to comment.