Fix ESM/CJS runtime failure in auto-answer-issues workflow#5846
Merged
trwalke merged 2 commits intotrwalke/addGhActionForIssuesfrom Mar 11, 2026
Merged
Conversation
…in workflow Co-authored-by: trwalke <30090357+trwalke@users.noreply.github.com>
trwalke
approved these changes
Mar 11, 2026
Copilot
AI
changed the title
[WIP] [WIP] Address feedback on auto-answering issues GitHub Actions workflow
Fix ESM/CJS runtime failure in auto-answer-issues workflow
Mar 11, 2026
Copilot stopped work on behalf of
trwalke due to an error
March 11, 2026 22:25
bgavrilMS
pushed a commit
that referenced
this pull request
Mar 19, 2026
…workflow (#5846) * Initial plan * Fix ESM/CJS issue: use dynamic import() for openai and @octokit/rest in workflow Co-authored-by: trwalke <30090357+trwalke@users.noreply.github.com> --------- Co-authored-by: copilot-swe-agent[bot] <198982749+Copilot@users.noreply.github.com> Co-authored-by: trwalke <30090357+trwalke@users.noreply.github.com>
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
require("openai")fails at runtime under Node 20 becauseopenaiv4+ is ESM-only. Same issue applies to@octokit/restv19+.Changes proposed in this request
require("openai")andrequire("@octokit/rest")inside the asyncmain()function as dynamicimport()calls — the same pattern used inprototype/msal-analyzer/server/services/logAnalyzer.jsTesting
No automated tests apply to workflow files. Validated locally that both packages load correctly via dynamic
import()under Node 20.Performance impact
None.
Documentation
🔒 GitHub Advanced Security automatically protects Copilot coding agent pull requests. You can protect all pull requests by enabling Advanced Security for your repositories. Learn more about Advanced Security.