Skip to content

Instantly share code, notes, and snippets.

@rbren
Created October 2, 2017 16:26
Show Gist options
  • Save rbren/17258f8e722ab1e34707906128768b41 to your computer and use it in GitHub Desktop.
Save rbren/17258f8e722ab1e34707906128768b41 to your computer and use it in GitHub Desktop.
let hn = require('@datafire/github').create();
(async () => {
let newIssue = await github.repos.owner.repo.issues.post({
owner: 'torvalids',
repo: 'linux',
body: {
title: "Fix the thing!",
body: "It's broke",
}
});
})();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment