* Adding graphql query to fetch latest helm release of specified type * Updating typescript version and js file * Fixing PR comments in release * Adding feature flag as environment variable in release * Changing feature flag name * Updating files as per latest changes in master after resolving merge conflicts * Removing non prod modules
10 lines
327 B
JavaScript
10 lines
327 B
JavaScript
import { endpoint } from "@octokit/endpoint";
|
|
import { getUserAgent } from "universal-user-agent";
|
|
import { VERSION } from "./version";
|
|
import withDefaults from "./with-defaults";
|
|
export const request = withDefaults(endpoint, {
|
|
headers: {
|
|
"user-agent": `octokit-request.js/${VERSION} ${getUserAgent()}`,
|
|
},
|
|
});
|