mirror of
https://github.com/Azure/setup-helm.git
synced 2025-07-17 19:30:34 +00:00
* 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
18 lines
520 B
JavaScript
18 lines
520 B
JavaScript
import { request } from "@octokit/request";
|
|
import { getUserAgent } from "universal-user-agent";
|
|
import { VERSION } from "./version";
|
|
import { withDefaults } from "./with-defaults";
|
|
export const graphql = withDefaults(request, {
|
|
headers: {
|
|
"user-agent": `octokit-graphql.js/${VERSION} ${getUserAgent()}`,
|
|
},
|
|
method: "POST",
|
|
url: "/graphql",
|
|
});
|
|
export function withCustomRequest(customRequest) {
|
|
return withDefaults(customRequest, {
|
|
method: "POST",
|
|
url: "/graphql",
|
|
});
|
|
}
|