Created
July 13, 2020 14:33
-
-
Save cdrini/c6c0c3d5cecd5609b17f12f837170edb to your computer and use it in GitHub Desktop.
Revisions
-
cdrini created this gist
Jul 13, 2020 .There are no files selected for viewing
This file contains hidden or 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 charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,75 @@ const packageJson = require('./package.json'); const shrinkwrapJson = require('./npm-shrinkwrap.json'); const fetch = require('node-fetch'); const fs = require('fs'); const { execSync } = require('child_process'); const GH_API_ROOT = 'https://api.github.com'; const REPO = "internetarchive/bookreader"; async function main() { // Make sure branching off of latest master execSync(`git checkout master`, {stdio: 'inherit'}); execSync(`git pull origin master`, {stdio: 'inherit'}); // Fetch the latest release from GitHub const latestRelease = await fetch(`${GH_API_ROOT}/repos/${REPO}/releases/latest`).then(r => r.json()); const newTag = latestRelease.tag_name; const [ref] = await fetch(`${GH_API_ROOT}/repos/${REPO}/git/matching-refs/tags/${newTag}`).then(r => r.json()); const newSHA = ref.object.sha; // Update package.json packageJson.dependencies.bookreader = `git://github.com/${REPO}.git#${newTag}`; fs.writeFileSync('package.json', JSON.stringify(packageJson, null, " ") + '\n'); // Update shrinkwrap shrinkwrapJson.dependencies.bookreader.version = `git://github.com/${REPO}.git#${newSHA}`; shrinkwrapJson.dependencies.bookreader.from = `git://github.com/${REPO}.git#${newTag}`; fs.writeFileSync('npm-shrinkwrap.json', JSON.stringify(shrinkwrapJson, null, " ") + '\n'); // Bail if no changes const diff = execSync('git diff npm-shrinkwrap.json package.json').toString(); if (!diff) { console.log("Everything already up-to-date"); return; } // Create/push branch execSync(`git checkout -b br-${newTag}`, {stdio: 'inherit'}); execSync(`git add npm-shrinkwrap.json package.json`, {stdio: 'inherit'}); execSync(`git commit -m "Update BookReader to ${newTag}"`, {stdio: 'inherit'}); execSync(`git push origin HEAD`, {stdio: 'inherit'}); // Create MR const newMR = await fetch(`https://git.archive.org/api/v4/projects/58/merge_request`, { method: 'POST', headers: { 'PRIVATE-TOKEN': process.env['GITLAB_TOKEN'], 'Content-type': 'application/json', }, body: JSON.stringify({ source_branch: `br-${newTag}`, target_branch: 'master', title: `Update BookReader to ${newTag}`, description: `See changelog: ${latestRelease.html_url}`, labels: 'team-ux', remove_source_branch: true, }), }).then(r => r.json()); // post link to MR on Slack await fetch(process.env['SLACK_HOOK'], { method: 'POST', headers: { 'Content-type': 'application/json', }, body: JSON.stringify({ text: `Creating a new MR for BookReader ${newTag} at ${newMR.web_url}` }), }); } if (execSync('git status --untracked-files=no --porcelain').toString()) { throw "Uncommited changes!"; } main();