Reputation: 637
I have a gulpfile.js
and I want to upload my build files to my repo each time I build the project.
When the build gets uploaded or committed, I wish for the description to be like: Build (#999)
Example: https://github.com/elementary/mvp
How could I do this?
Upvotes: 1
Views: 120
Reputation: 538
You are looking for this npm package (gulp-git)
This can help you to perform all git
functions.
Upvotes: 3