From 920551db1704ae65eeabb7a08f2524c6d09e16d9 Mon Sep 17 00:00:00 2001 From: David Seveloff Date: Tue, 11 Jul 2023 15:38:12 +0300 Subject: [PATCH] ED-11261 --- .github/scripts/update-git-env-variable.js | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.github/scripts/update-git-env-variable.js b/.github/scripts/update-git-env-variable.js index d1127354e30..10814c180a5 100644 --- a/.github/scripts/update-git-env-variable.js +++ b/.github/scripts/update-git-env-variable.js @@ -1,8 +1,10 @@ const { Octokit } = require( 'octokit' ); const octokit = new Octokit( { auth: process.env.token, + // auth: "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", } ) +console.log('log: 'octokit, process.env) const { repository_id, environment_name, name, value } = process.env; (async () => { @@ -14,6 +16,6 @@ const { repository_id, environment_name, name, value } = process.env; repository_id: '431095051', environment_name: 'SCHEDULE_RELEASES', name: 'LAST_AUTOMATED_RELEASE', - value: '2022-15-01T00:00:00Z', + value: '2023-10-01T00:00:00Z', } ); } )()