From 683296246a53721621ed54f8fd5c230108ed7303 Mon Sep 17 00:00:00 2001 From: Matt Devy <32791943+MattDevy@users.noreply.github.com> Date: Wed, 15 Jul 2026 17:48:14 +0100 Subject: [PATCH] fix(automation): pass token to code generator (#3014) (cherry picked from commit e0e7ebfdb713c0476911cd76af53e24cd97f6165) --- rake_tasks/automation.rake | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/rake_tasks/automation.rake b/rake_tasks/automation.rake index 66f5cf547..a54533ccc 100644 --- a/rake_tasks/automation.rake +++ b/rake_tasks/automation.rake @@ -50,7 +50,7 @@ namespace :automation do " && cd #{generator_path} " \ ' && bundle config set --local path vendor/bundle ' \ ' && bundle install ' \ - " && bundle exec rake run[#{branch}]" + " && GITHUB_TOKEN=\"$CLIENTS_GITHUB_TOKEN\" bundle exec rake run[#{branch}]" end FileUtils.rm_rf(generator_path) end