1
0
Fork 0
toolkit/packages/github
Danny McCormick d7f00ea0fd
Update package versions to 1.0.0 (#42)
* Update package versions to 1.0.0

* Fix package-lock
2019-08-07 12:56:34 -04:00
..
__tests__ Add github package (#32) 2019-07-29 13:09:32 -04:00
src Fix exports 2019-08-05 08:53:51 -04:00
README.md Get token from input in doc 2019-07-31 16:19:47 -04:00
jest.config.js Add github package (#32) 2019-07-29 13:09:32 -04:00
package-lock.json Update package versions to 1.0.0 (#42) 2019-08-07 12:56:34 -04:00
package.json Update package versions to 1.0.0 (#42) 2019-08-07 12:56:34 -04:00
tsconfig.json Add github package (#32) 2019-07-29 13:09:32 -04:00

README.md

@actions/github

A hydrated Octokit client.

Usage

Returns an [Octokit SDK] client. See https://octokit.github.io/rest.js for the API.

const github = require('@actions/github');
const core = require('@actions/core');

// This should be a token with access to your repository scoped in as a secret.
const myToken = core.getInput('myToken');

const octokit = new github.GitHub(myToken);

const pulls = await octokit.pulls.get({
    owner: 'octokit',
    repo: 'rest.js',
    pull_number: 123,
    mediaType: {
      format: 'diff'
    }
});

console.log(pulls);

You can also make GraphQL requests:

const result = await octokit.graphql(query, variables);

Finally, you can get the context of the current action:

const github = require('@actions/github');

const context = github.context;

const newIssue = await octokit.issues.create({
  ...context.repo,
  title: 'New issue!',
  body: 'Hello Universe!'
});