(token)
| 32 | }; |
| 33 | |
| 34 | function getGitHubClient(token) { |
| 35 | const client = new Octokit({ |
| 36 | auth: `token ${token}`, |
| 37 | baseUrl: 'https://api.github.com', |
| 38 | }); |
| 39 | return client; |
| 40 | } |
| 41 | |
| 42 | function getEnvs() { |
| 43 | const { |
no outgoing calls
no test coverage detected