Files
create-github-app-token/post.js
T
Parker Brown 1f82f7df93 feat: add proxy support (#102)
Adds support for the following environment variables:

- `https_proxy`
- `HTTPS_PROXY`
- `http_proxy`
- `HTTP_PROXY`
- `no_proxy`
- `NO_PROXY`
2024-02-08 15:39:04 -08:00

13 lines
253 B
JavaScript

// @ts-check
import core from "@actions/core";
import { post } from "./lib/post.js";
import request from "./lib/request.js";
post(core, request).catch((error) => {
/* c8 ignore next 3 */
console.error(error);
core.setFailed(error.message);
});