mirror of
https://github.com/actions/stale.git
synced 2025-12-12 21:17:15 +00:00
Add most recent action
This commit is contained in:
17
node_modules/@actions/github/README.md
generated
vendored
17
node_modules/@actions/github/README.md
generated
vendored
@@ -8,11 +8,12 @@ Returns an [Octokit SDK] client. See https://octokit.github.io/rest.js for the A
|
||||
|
||||
```
|
||||
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 = process.env.GITHUB_TOKEN
|
||||
const myToken = core.getInput('myToken');
|
||||
|
||||
const octokit = new github.GitHub(myToken)
|
||||
const octokit = new github.GitHub(myToken);
|
||||
|
||||
const pulls = await octokit.pulls.get({
|
||||
owner: 'octokit',
|
||||
@@ -21,15 +22,15 @@ const pulls = await octokit.pulls.get({
|
||||
mediaType: {
|
||||
format: 'diff'
|
||||
}
|
||||
})
|
||||
});
|
||||
|
||||
console.log(pulls)
|
||||
console.log(pulls);
|
||||
```
|
||||
|
||||
You can also make GraphQL requests:
|
||||
|
||||
```
|
||||
const result = await octokit.graphql(query, variables)
|
||||
const result = await octokit.graphql(query, variables);
|
||||
```
|
||||
|
||||
Finally, you can get the context of the current action:
|
||||
@@ -37,11 +38,11 @@ Finally, you can get the context of the current action:
|
||||
```
|
||||
const github = require('@actions/github');
|
||||
|
||||
const context = github.context
|
||||
const context = github.context;
|
||||
|
||||
const newIssue = await octokit.issues.create({
|
||||
...context.repo,
|
||||
title: 'New issue!',
|
||||
body: 'Hello Universe!'
|
||||
})
|
||||
```
|
||||
});
|
||||
```
|
||||
|
||||
Reference in New Issue
Block a user