Skip to content

Fix identical() function call in README.Rmd#49

Merged
maurolepore merged 1 commit into
mainfrom
fix/readme-identical-function
Jul 18, 2025
Merged

Fix identical() function call in README.Rmd#49
maurolepore merged 1 commit into
mainfrom
fix/readme-identical-function

Conversation

@maurolepore
Copy link
Copy Markdown
Owner

@maurolepore maurolepore commented Jul 18, 2025

Summary

  • Fixed missing second argument in identical() function call on line 15 of README.Rmd
  • The function was calling identical(Sys.getenv("GITHUB_ACTIONS") == "true") which was missing the comparison value
  • Changed to identical(Sys.getenv("GITHUB_ACTIONS"), "true") to properly compare the environment variable

Test plan

  • README.Rmd now renders without errors
  • Generated README.md is properly updated
  • All CI checks pass

🤖 Generated with Claude Code

The identical() function was missing its second argument, causing the render to fail.
Fixed by properly comparing Sys.getenv("GITHUB_ACTIONS") with "true".

🤖 Generated with [Claude Code](https://claude.ai/code)

Co-Authored-By: Claude <noreply@anthropic.com>
@maurolepore maurolepore merged commit df32b35 into main Jul 18, 2025
13 checks passed
@maurolepore maurolepore deleted the fix/readme-identical-function branch July 18, 2025 17:56
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

1 participant