-
Notifications
You must be signed in to change notification settings - Fork 286
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Bump @types/sequelize #143
Conversation
Codecov Report
@@ Coverage Diff @@
## master #143 +/- ##
=======================================
Coverage 96.84% 96.84%
=======================================
Files 100 100
Lines 918 918
Branches 124 124
=======================================
Hits 889 889
Misses 9 9
Partials 20 20 Continue to review full report at Codecov.
|
Thanks for updating :) I've published a new version ( |
@RobinBuschmann Awesome! I was thinking that maybe we can run publish every master change on npm under the As a side comment, I can help you out maintaining the project if you want to! Let me know! |
So moving towards something like this blog post? |
Another option; if the project used Git Flow with structured commit messages we could use this other package on npm. I would like having a @next tag; in addition to that, what if we had a branch called This way we get bleeding edge on |
I like the idea! How would you handle the stable branch ? I guess that the "real" releases would be done manually right ? CI will publish only if the stable branch has a version that is not in npm ? |
Maybe we can start with the |
The stable branch would only be manually merged into with PR's either @RobinBuschmann or a core team member initiates and accepts. A commit can be made to increment the version number (could this be automated?) to the right number before the PR is merged. Starting with the So.... the |
@snewell92 @RobinBuschmann I can tackle that one! The only thing is that we will need to have the available env vars on travis to publish on NPM. |
Hey @bilby91 @snewell92, sounds great :) Starting with the When it's time to set it up, give me the key and I will put the environment variables on travis. |
@RobinBuschmann Awesome! You can get the api key from |
@RobinBuschmann Yep, that should work! |
Hey, I started playing in one our repos https://github.com/suttna/botbuilder-slack The idea would be the following. Every time a new stable release is created. We need to dump the version to the release with When that commit is merged into master, CI will do the following:
For doing this, the ssh key that is in travis should have write access to the repo. Maybe we can follow this conversation in another commit. |
Closes #142