Skip to content

Commit

Permalink
v8.9.6
Browse files Browse the repository at this point in the history
  • Loading branch information
sorenlouv committed Oct 9, 2022
1 parent 739831d commit 98c4365
Show file tree
Hide file tree
Showing 5 changed files with 11 additions and 8 deletions.
5 changes: 3 additions & 2 deletions dist/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -9756,7 +9756,7 @@ const elastic_apm_node_1 = __importDefault(__nccwpck_require__(20740));
//@ts-expect-error
const noop_transport_1 = __nccwpck_require__(69184);
const logger_1 = __nccwpck_require__(57129);
const environment = process.env.NODE_ENV || 'production';
const environment = process.env.NODE_ENV || 'production-cli';
elastic_apm_node_1.default
.start({
serviceName: 'backport',
Expand Down Expand Up @@ -14274,7 +14274,7 @@ exports.maybe = maybe;

Object.defineProperty(exports, "__esModule", ({ value: true }));
exports.PACKAGE_VERSION = void 0;
exports.PACKAGE_VERSION = '8.9.5';
exports.PACKAGE_VERSION = '8.9.6';
//# sourceMappingURL=packageVersion.js.map

/***/ }),
Expand Down Expand Up @@ -176331,6 +176331,7 @@ const core = __importStar(__nccwpck_require__(42186));
const backport_1 = __nccwpck_require__(76253);
async function run({ context, inputs, }) {
core.info('Initiate backport');
process.env['NODE_ENV'] = 'production-github-action';
const { payload, repo, runId } = context;
const pullRequest = payload.pull_request;
if (!pullRequest) {
Expand Down
1 change: 1 addition & 0 deletions dist/run.js
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,7 @@ const core = __importStar(require("@actions/core"));
const backport_1 = require("backport");
async function run({ context, inputs, }) {
core.info('Initiate backport');
process.env['NODE_ENV'] = 'production-github-action';
const { payload, repo, runId } = context;
const pullRequest = payload.pull_request;
if (!pullRequest) {
Expand Down
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "backport-github-action",
"version": "8.9.5",
"version": "8.9.6",
"private": true,
"scripts": {
"build": "yarn ncc build src/index.ts",
Expand All @@ -15,7 +15,7 @@
"@actions/github": "^5.1.1",
"@octokit/action": "^4.0.8",
"@octokit/graphql": "^5.0.1",
"backport": "^8.9.5",
"backport": "^8.9.6",
"husky": "^8.0.1"
},
"devDependencies": {
Expand Down
1 change: 1 addition & 0 deletions src/run.ts
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@ export async function run({
};
}) {
core.info('Initiate backport');
process.env['NODE_ENV'] = 'production-github-action';

const { payload, repo, runId } = context;
const pullRequest = payload.pull_request;
Expand Down
8 changes: 4 additions & 4 deletions yarn.lock
Original file line number Diff line number Diff line change
Expand Up @@ -1482,10 +1482,10 @@ babel-preset-jest@^29.0.2:
babel-plugin-jest-hoist "^29.0.2"
babel-preset-current-node-syntax "^1.0.0"

backport@^8.9.5:
version "8.9.5"
resolved "https://registry.yarnpkg.com/backport/-/backport-8.9.5.tgz#d28d113189d16e1097977cef4000485e324e7eee"
integrity sha512-+FGXVMv4N1twQIbOEVkt4l/F/7uxjNK4SVOoKmO9PcVsTDuJBo71iDnmkTrXEzydbJOgwC7yHYZFun/+7Wx2tg==
backport@^8.9.6:
version "8.9.6"
resolved "https://registry.yarnpkg.com/backport/-/backport-8.9.6.tgz#721bca3279590ade2e21906c8cb023bf8124a950"
integrity sha512-RrC4pV/BSGg1oEJ4Y00ZpqISNLWvFB/LUkByqUlPFGPsQcYyda+18MbeZZ/VvSU9l3eNK6ZaPGEhz2piyZCBDg==
dependencies:
"@octokit/rest" "^19.0.4"
axios "^1.1.2"
Expand Down

0 comments on commit 98c4365

Please sign in to comment.