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', } ); } )()