Fix auto-update-community-members workflow#7743
Merged
svrnm merged 1 commit intoopen-telemetry:mainfrom Sep 11, 2025
Merged
Conversation
auto-update-community-members workflow
vitorvasc
approved these changes
Sep 10, 2025
Member
vitorvasc
left a comment
There was a problem hiding this comment.
Thanks for noticing it and also thanks for bringing this fix. Appreciate it!
svrnm
approved these changes
Sep 11, 2025
asapple
pushed a commit
to asapple/opentelemetry.io
that referenced
this pull request
Sep 27, 2025
jaehanbyun
pushed a commit
to jaehanbyun/opentelemetry.io
that referenced
this pull request
Dec 8, 2025
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.
Overview
This PR attempts to fix the
auto-update-community-membersworkflow.Details
The
auto-update-community-membersjob has been failing for the past 3 weeks (first failure). The last successful run was https://github.com/open-telemetry/opentelemetry.io/actions/runs/17059027027.The issue stems from the introduction of the
fix:refcachestep, which internally executesnpm run _hugo. This command was failing because the required dependencies weren't installed in the current working directory. While the workflow does install dependencies earlier, it does so in the subdirectory of the script to generate the community data (./scripts/generate-community-data), but thefix:refcachecommand runs from the root directory wherenode_modulesaren't available.The fix is simple: add
npm install --omit=optionalbefore runningnpm run fix:refcacheto ensure all necessary dependencies are available when the script executes.