-
Notifications
You must be signed in to change notification settings - Fork 1.3k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* v3.0.0 Changelog * Manually merge changes from master
- Loading branch information
1 parent
a0935d5
commit 3aec53d
Showing
6 changed files
with
190 additions
and
10 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
### Description | ||
|
||
1. The problem you are facing (in as much detail as is necessary to describe the problem to someone who doesn't know anything about the system you're building) | ||
2. A summary of the proposed solution | ||
3. A description of how this solution solves the problem, in more detail than item #2 | ||
4. Any additional discussion on possible problems this might introduce, questions that you have related to the changes, etc. | ||
|
||
### Expected behavior | ||
|
||
Tell us what you think should happen. | ||
|
||
### Actual behavior | ||
|
||
If possible, please create a small demo that demonstrates the issue. | ||
Please refrain from giving code examples in altJS languages like CoffeeScript, etc. Marionette is written in plain-old JavaScript and is generally easier for all members in the community to read. | ||
|
||
### Environment | ||
|
||
1. Marionette version: | ||
2. Backbone version: | ||
3. Additional build tools, etc: |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
### Proposed changes | ||
- | ||
- | ||
- | ||
|
||
Link to the issue: |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,32 @@ | ||
var Travis = require('travis-ci'); | ||
var repo = 'marionettejs/marionettejs.com'; | ||
var travis = new Travis({ | ||
version: '2.0.0', | ||
headers: { | ||
'User-Agent': 'Travis/1.0' | ||
} | ||
}); | ||
|
||
travis.authenticate({ | ||
github_token: process.env.GH_TOKEN | ||
}, function (err, res) { | ||
if (err) { | ||
return console.error(err); | ||
} | ||
|
||
//get repo builds | ||
travis.repos(repo.split('/')[0], repo.split('/')[1]).builds.get(function (err, res) { | ||
if (err) { | ||
return console.error(err); | ||
} | ||
//rebuild latest build | ||
travis.requests.post({ | ||
build_id: res.builds[0].id | ||
}, function (err, res) { | ||
if (err) { | ||
return console.error(err); | ||
} | ||
console.log(res.flash[0].notice); | ||
}); | ||
}); | ||
}); |