Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore(deps): update dependency rubocop to v1.67.0 #1999

Merged
merged 2 commits into from
Oct 16, 2024

Conversation

renovate[bot]
Copy link
Contributor

@renovate renovate bot commented Oct 15, 2024

This PR contains the following updates:

Package Change Age Adoption Passing Confidence
rubocop (source, changelog) 1.66.1 -> 1.67.0 age adoption passing confidence

Release Notes

rubocop/rubocop (rubocop)

v1.67.0

Compare Source

New features
  • #​13259: Add new Lint/DuplicateSetElement cop. ([@​koic][])
  • #​13223: Add AllowRBSInlineAnnotation config option to Layout/LeadingCommentSpace to support RBS::Inline style annotation comments. ([@​tk0miya][])
  • #​13310: Display analysis Ruby version in rubocop -V. ([@​koic][])
Bug fixes
  • #​13314: Fix a false negative for Style/Semicolon when using a semicolon between a closing parenthesis after a line break and a consequent expression. ([@​koic][])
  • #​13217: Fix a false positive in Lint/ParenthesesAsGroupedExpression with compound ranges. ([@​gsamokovarov][])
  • #​13268: Fix a false positive for Style/BlockDelimiters when a single line do-end block with an inline rescue with a semicolon before rescue. ([@​koic][])
  • #​13298: Fix an error for Layout/AccessModifierIndentation when the access modifier is on the same line as the class definition. ([@​koic][])
  • #​13198: Fix an error for Style/OneLineConditional when using nested if/then/else/end. ([@​koic][])
  • #​13316: Fix an incorrect autocorrect for Lint/ImplicitStringConcatenation with Lint/TripleQuotes when string literals with triple quotes are used. ([@​koic][])
  • #​13220: Fix an incorrect autocorrect for Style/ArgumentsForwarding when using only forwarded arguments in brackets. ([@​koic][])
  • #​13202: Fix an incorrect autocorrect for Style/CombinableLoops when looping over the same data with different block variable names. ([@​koic][])
  • #​13291: Fix an incorrect autocorrect for Style/RescueModifier when using modifier rescue for method call with heredoc argument. ([@​koic][])
  • #​13226: Fix --auto-gen-config when passing an absolute config path. ([@​earlopain][])
  • #​13225: Avoid syntax error when correcting Style/OperatorMethodCall with / operations followed by a parenthesized argument. ([@​dvandersluis][])
  • #​13235: Fix an error for Style/IfUnlessModifier when multiline if that fits on one line and using implicit method call with hash value omission syntax. ([@​koic][])
  • #​13219: Fix a false positive for Style/ArgumentsForwarding with Ruby 3.0 and optional position arguments. ([@​earlopain][])
  • #​13271: Fix a false positive for Lint/AmbiguousRange when using rational literals. ([@​koic][])
  • #​13260: Fix a false positive for Lint/RedundantSafeNavigation with namespaced constants. ([@​earlopain][])
  • #​13224: Fix false positives for Style/OperatorMethodCall with named forwarding. ([@​earlopain][])
  • #​13213: Fix false positives for Style/AccessModifierDeclarations when AllowModifiersOnAttrs: true and using splat with a percent symbol array, or with a constant. ([@​koic][])
  • #​13145: Fix false positives for Style/RedundantLineContinuation when line continuations with comparison operator and the LHS is wrapped in parentheses. ([@​koic][])
  • #​12875: Fix false positive for Style/ArgumentsForwarding when argument is used inside a block. ([@​dvandersluis][])
  • #​13239: Fix false positive for Style/CollectionCompact when using delete_if. ([@​masato-bkn][])
  • #​13210: Fix omit_parentheses style for pattern match with value omission in single-line branch. ([@​gsamokovarov][])
  • #​13149: Handle crashes in custom Ruby extractors more gracefully. ([@​earlopain][])
  • #​13319: Handle literal forward slashes inside a regexp in Lint/LiteralInInterpolation. ([@​dvandersluis][])
  • #​13208: Fix an incorrect autocorrect for Style/IfWithSemicolon when single-line if/;/end when the then body contains a method call with [] or []=. ([@​koic][])
  • #​13318: Prevent modifying blocks with Style/HashEachMethods if the hash is modified within the block. ([@​dvandersluis][])
  • #​13293: Fix TargetRubyVersion from a gemspec when the gemspec is not named like the folder it is located in. ([@​earlopain][])
  • #​13211: Fix wrong autocorrect for Style/GuardClause when using heredoc without else branch. ([@​earlopain][])
  • #​13215: Fix wrong autocorrect for Lint/BigDecimalNew when using ::BigDecimal.new. ([@​earlopain][])
  • #​13215: Fix wrong autocorrect for Style/MethodCallWithArgsParentheses with EnforcedStyle: omit_parentheses and whitespace. ([@​earlopain][])
  • #​13302: Fix incompatible autocorrect between Style/RedundantBegin and Style/BlockDelimiters with EnforcedStyle: braces_for_chaining. ([@​earlopain][])
Changes
  • #​13221: Do not group accessors having RBS::Inline annotation comments in Style/AccessorGrouping. ([@​tk0miya][])
  • #​13286: Add AllowedMethods configuration to Layout/FirstMethodArgumentLineBreak. ([@​dvandersluis][])
  • #​13110: Add support in Style/ArgumentsForwarding for detecting forwarding of all anonymous arguments. ([@​dvandersluis][])
  • #​13222: Allow to write RBS::Inline annotation comments after method definition in Style/CommentedKeyword. ([@​tk0miya][])
  • #​13253: Emit a deprecation when custom cops inherit from RuboCop::Cop::Cop. ([@​earlopain][])
  • #​13300: Set EnforcedShorthandSyntax: either by default for Style/HashSyntax. ([@​koic][])
  • #​13254: Enhance the autocorrect for Naming/InclusiveLanguage when a sole suggestion is set. ([@​koic][])
  • #​13232: Make server mode aware of auto-restart for local config update. ([@​koic][])
  • #​13270: Make Style/SelectByRegexp aware of filter in Ruby version 2.6 or above. ([@​masato-bkn][])
  • #​9816: Refine Lint/SafeNavigationConsistency cop to check that the safe navigation operator is applied consistently and without excess or deficiency. ([@​koic][])
  • #​13256: Report and correct more Style/SafeNavigation offenses. ([@​dvandersluis][])
  • #​13245: Support filter/filter! in Style/CollectionCompact. ([@​masato-bkn][])
  • #​13281: Support Ruby 3.4 for Lint/UriRegexp to avoid obsolete API. ([@​koic][])
  • #​13229: Update Style/MapIntoArray to be able to handle arrays created using [].tap. ([@​dvandersluis][])
  • #​13305: Update Style/ReturnNilInPredicateMethodDefinition to detect implicit nil returns inside if. ([@​dvandersluis][])
  • #​13327: Make server mode aware of auto-restart for .rubocop_todo.yml update. ([@​koic][])

Configuration

📅 Schedule: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined).

🚦 Automerge: Disabled by config. Please merge this manually once you are satisfied.

Rebasing: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox.

🔕 Ignore: Close this PR and you won't be reminded about this update again.


  • If you want to rebase/retry this PR, check this box

This PR was generated by Mend Renovate. View the repository job log.

Copy link
Contributor

qodo-merge-pro bot commented Oct 15, 2024

CI Failure Feedback 🧐

(Checks updated until commit 6e28ad6)

Action: tests (macos, stable)

Failed stage: Run tests [❌]

Failed test name: Remote WebDriver starts remotely

Failure summary:

The action failed due to multiple test failures in the RSpec suite:

  • The test Remote WebDriver starts remotely failed with a TypeError because there was an "implicit
    conversion of String into Integer" error. This occurred in the file remote_webdriver_spec.rb at
    lines 10 and 16.
  • The test Remote WebDriver uploads also failed with the same TypeError for the same reason, occurring
    at lines 10 and 16 in remote_webdriver_spec.rb.
  • The test Remote WebDriver downloads encountered the same TypeError issue, with errors at lines 10
    and 16 in remote_webdriver_spec.rb.
  • Additionally, the test Firefox Service sets log level failed due to an Errno::ENOENT error,
    indicating that a required file could not be found at the specified path.

  • Relevant error logs:
    1:  ##[group]Operating System
    2:  macOS
    ...
    
    270:  timeout_minutes: 20
    271:  max_attempts: 3
    272:  command: cd examples/ruby
    273:  bundle exec rspec
    274:  
    275:  retry_wait_seconds: 10
    276:  polling_interval_seconds: 1
    277:  warning_on_retry: true
    278:  continue_on_error: false
    ...
    
    283:  PATH: /Users/runner/.local/bin:/opt/homebrew/bin:/opt/homebrew/sbin:/Users/runner/.cargo/bin:/usr/local/opt/curl/bin:/usr/local/bin:/usr/local/sbin:/Users/runner/bin:/Users/runner/.yarn/bin:/Users/runner/Library/Android/sdk/tools:/Users/runner/Library/Android/sdk/platform-tools:/Library/Frameworks/Python.framework/Versions/Current/bin:/Library/Frameworks/Mono.framework/Versions/Current/Commands:/usr/bin:/bin:/usr/sbin:/sbin:/Users/runner/.dotnet/tools
    284:  JAVA_HOME: /Users/runner/hostedtoolcache/Java_Temurin-Hotspot_jdk/11.0.24-8/arm64/Contents/Home
    285:  JAVA_HOME_11_ARM64: /Users/runner/hostedtoolcache/Java_Temurin-Hotspot_jdk/11.0.24-8/arm64/Contents/Home
    286:  ##[endgroup]
    287:  ......*.........................................................................***...*************...*.....*........*FFF....*******..........**************.............................
    288:  Pending: (Failures listed here are expected and do not affect your suite's status)
    289:  1) Keys copy and paste
    290:  # Test guarded; Guarded by {:browser=>:chrome, :reason=>"https://bugs.chromium.org/p/chromedriver/issues/detail?id=4264"};
    291:  Failure/Error: expect(driver.find_element(id: 'textInput').attribute('value')).to eq 'SeleniumSelenium!'
    ...
    
    410:  40) Element Locators with relative locators finds near element
    411:  # These are reference following the documentation example
    412:  # ./spec/elements/locators_spec.rb:55
    413:  41) Element Locators with relative locators chains relative locators
    414:  # These are reference following the documentation example
    415:  # ./spec/elements/locators_spec.rb:59
    416:  Failures:
    417:  1) Remote WebDriver starts remotely
    418:  Got 0 failures and 2 other errors:
    419:  1.1) Failure/Error:
    420:  Selenium::Server.get(:latest,
    421:  background: true,
    422:  args: %w[--selenium-manager true --enable-managed-downloads true])
    423:  TypeError:
    424:  no implicit conversion of String into Integer
    425:  # ./spec/drivers/remote_webdriver_spec.rb:10:in `block (2 levels) in <top (required)>'
    426:  # ./spec/drivers/remote_webdriver_spec.rb:16:in `block (2 levels) in <top (required)>'
    427:  1.2) Failure/Error:
    428:  Selenium::Server.get(:latest,
    429:  background: true,
    430:  args: %w[--selenium-manager true --enable-managed-downloads true])
    431:  TypeError:
    432:  no implicit conversion of String into Integer
    433:  # ./spec/drivers/remote_webdriver_spec.rb:10:in `block (2 levels) in <top (required)>'
    434:  # ./spec/drivers/remote_webdriver_spec.rb:17:in `block (2 levels) in <top (required)>'
    435:  2) Remote WebDriver uploads
    436:  Got 0 failures and 2 other errors:
    437:  2.1) Failure/Error:
    438:  Selenium::Server.get(:latest,
    439:  background: true,
    440:  args: %w[--selenium-manager true --enable-managed-downloads true])
    441:  TypeError:
    442:  no implicit conversion of String into Integer
    443:  # ./spec/drivers/remote_webdriver_spec.rb:10:in `block (2 levels) in <top (required)>'
    444:  # ./spec/drivers/remote_webdriver_spec.rb:16:in `block (2 levels) in <top (required)>'
    445:  2.2) Failure/Error:
    446:  Selenium::Server.get(:latest,
    447:  background: true,
    448:  args: %w[--selenium-manager true --enable-managed-downloads true])
    449:  TypeError:
    450:  no implicit conversion of String into Integer
    451:  # ./spec/drivers/remote_webdriver_spec.rb:10:in `block (2 levels) in <top (required)>'
    452:  # ./spec/drivers/remote_webdriver_spec.rb:17:in `block (2 levels) in <top (required)>'
    453:  3) Remote WebDriver downloads
    454:  Got 0 failures and 2 other errors:
    455:  3.1) Failure/Error:
    456:  Selenium::Server.get(:latest,
    457:  background: true,
    458:  args: %w[--selenium-manager true --enable-managed-downloads true])
    459:  TypeError:
    460:  no implicit conversion of String into Integer
    461:  # ./spec/drivers/remote_webdriver_spec.rb:10:in `block (2 levels) in <top (required)>'
    462:  # ./spec/drivers/remote_webdriver_spec.rb:16:in `block (2 levels) in <top (required)>'
    463:  3.2) Failure/Error:
    464:  Selenium::Server.get(:latest,
    465:  background: true,
    466:  args: %w[--selenium-manager true --enable-managed-downloads true])
    467:  TypeError:
    468:  no implicit conversion of String into Integer
    469:  # ./spec/drivers/remote_webdriver_spec.rb:10:in `block (2 levels) in <top (required)>'
    470:  # ./spec/drivers/remote_webdriver_spec.rb:17:in `block (2 levels) in <top (required)>'
    471:  Finished in 6 minutes 13 seconds (files took 6.44 seconds to load)
    472:  185 examples, 3 failures, 41 pending
    473:  Failed examples:
    474:  rspec ./spec/drivers/remote_webdriver_spec.rb:19 # Remote WebDriver starts remotely
    475:  rspec ./spec/drivers/remote_webdriver_spec.rb:26 # Remote WebDriver uploads
    476:  rspec ./spec/drivers/remote_webdriver_spec.rb:42 # Remote WebDriver downloads
    477:  ##[warning]Attempt 1 failed. Reason: Child_process exited with error code 1
    478:  ......*.........................................................................***...*************...*.....*........*FFF....*******..........**************.............................
    479:  Pending: (Failures listed here are expected and do not affect your suite's status)
    480:  1) Keys copy and paste
    481:  # Test guarded; Guarded by {:browser=>:chrome, :reason=>"https://bugs.chromium.org/p/chromedriver/issues/detail?id=4264"};
    482:  Failure/Error: expect(driver.find_element(id: 'textInput').attribute('value')).to eq 'SeleniumSelenium!'
    ...
    
    601:  40) Element Locators with relative locators finds near element
    602:  # These are reference following the documentation example
    603:  # ./spec/elements/locators_spec.rb:55
    604:  41) Element Locators with relative locators chains relative locators
    605:  # These are reference following the documentation example
    606:  # ./spec/elements/locators_spec.rb:59
    607:  Failures:
    608:  1) Remote WebDriver starts remotely
    609:  Got 0 failures and 2 other errors:
    610:  1.1) Failure/Error:
    611:  Selenium::Server.get(:latest,
    612:  background: true,
    613:  args: %w[--selenium-manager true --enable-managed-downloads true])
    614:  TypeError:
    615:  no implicit conversion of String into Integer
    616:  # ./spec/drivers/remote_webdriver_spec.rb:10:in `block (2 levels) in <top (required)>'
    617:  # ./spec/drivers/remote_webdriver_spec.rb:16:in `block (2 levels) in <top (required)>'
    618:  1.2) Failure/Error:
    619:  Selenium::Server.get(:latest,
    620:  background: true,
    621:  args: %w[--selenium-manager true --enable-managed-downloads true])
    622:  TypeError:
    623:  no implicit conversion of String into Integer
    624:  # ./spec/drivers/remote_webdriver_spec.rb:10:in `block (2 levels) in <top (required)>'
    625:  # ./spec/drivers/remote_webdriver_spec.rb:17:in `block (2 levels) in <top (required)>'
    626:  2) Remote WebDriver uploads
    627:  Got 0 failures and 2 other errors:
    628:  2.1) Failure/Error:
    629:  Selenium::Server.get(:latest,
    630:  background: true,
    631:  args: %w[--selenium-manager true --enable-managed-downloads true])
    632:  TypeError:
    633:  no implicit conversion of String into Integer
    634:  # ./spec/drivers/remote_webdriver_spec.rb:10:in `block (2 levels) in <top (required)>'
    635:  # ./spec/drivers/remote_webdriver_spec.rb:16:in `block (2 levels) in <top (required)>'
    636:  2.2) Failure/Error:
    637:  Selenium::Server.get(:latest,
    638:  background: true,
    639:  args: %w[--selenium-manager true --enable-managed-downloads true])
    640:  TypeError:
    641:  no implicit conversion of String into Integer
    642:  # ./spec/drivers/remote_webdriver_spec.rb:10:in `block (2 levels) in <top (required)>'
    643:  # ./spec/drivers/remote_webdriver_spec.rb:17:in `block (2 levels) in <top (required)>'
    644:  3) Remote WebDriver downloads
    645:  Got 0 failures and 2 other errors:
    646:  3.1) Failure/Error:
    647:  Selenium::Server.get(:latest,
    648:  background: true,
    649:  args: %w[--selenium-manager true --enable-managed-downloads true])
    650:  TypeError:
    651:  no implicit conversion of String into Integer
    652:  # ./spec/drivers/remote_webdriver_spec.rb:10:in `block (2 levels) in <top (required)>'
    653:  # ./spec/drivers/remote_webdriver_spec.rb:16:in `block (2 levels) in <top (required)>'
    654:  3.2) Failure/Error:
    655:  Selenium::Server.get(:latest,
    656:  background: true,
    657:  args: %w[--selenium-manager true --enable-managed-downloads true])
    658:  TypeError:
    659:  no implicit conversion of String into Integer
    660:  # ./spec/drivers/remote_webdriver_spec.rb:10:in `block (2 levels) in <top (required)>'
    661:  # ./spec/drivers/remote_webdriver_spec.rb:17:in `block (2 levels) in <top (required)>'
    662:  Finished in 7 minutes 33 seconds (files took 3.68 seconds to load)
    663:  185 examples, 3 failures, 41 pending
    664:  Failed examples:
    665:  rspec ./spec/drivers/remote_webdriver_spec.rb:19 # Remote WebDriver starts remotely
    666:  rspec ./spec/drivers/remote_webdriver_spec.rb:26 # Remote WebDriver uploads
    667:  rspec ./spec/drivers/remote_webdriver_spec.rb:42 # Remote WebDriver downloads
    668:  ##[warning]Attempt 2 failed. Reason: Child_process exited with error code 1
    669:  ......*......................................................................F..***...*************...*.....*........*FFF....*******..........**************.............................
    670:  Pending: (Failures listed here are expected and do not affect your suite's status)
    671:  1) Keys copy and paste
    672:  # Test guarded; Guarded by {:browser=>:chrome, :reason=>"https://bugs.chromium.org/p/chromedriver/issues/detail?id=4264"};
    673:  Failure/Error: expect(driver.find_element(id: 'textInput').attribute('value')).to eq 'SeleniumSelenium!'
    ...
    
    792:  40) Element Locators with relative locators finds near element
    793:  # These are reference following the documentation example
    794:  # ./spec/elements/locators_spec.rb:55
    795:  41) Element Locators with relative locators chains relative locators
    796:  # These are reference following the documentation example
    797:  # ./spec/elements/locators_spec.rb:59
    798:  Failures:
    799:  1) Firefox Service sets log level
    800:  Failure/Error: expect(File.readlines(file_name).grep(/Marionette	DEBUG/).any?).to eq true
    801:  Errno::ENOENT:
    802:  No such file or directory @ rb_sysopen - /var/folders/t_/mmhnh941511_hp2lwh383bp00000gn/T/geckodriver20241015-31273-ygra9c
    803:  # ./spec/browsers/firefox_spec.rb:66:in `readlines'
    804:  # ./spec/browsers/firefox_spec.rb:66:in `block (3 levels) in <top (required)>'
    805:  2) Remote WebDriver starts remotely
    806:  Got 0 failures and 2 other errors:
    807:  2.1) Failure/Error:
    808:  Selenium::Server.get(:latest,
    809:  background: true,
    810:  args: %w[--selenium-manager true --enable-managed-downloads true])
    811:  TypeError:
    812:  no implicit conversion of String into Integer
    813:  # ./spec/drivers/remote_webdriver_spec.rb:10:in `block (2 levels) in <top (required)>'
    814:  # ./spec/drivers/remote_webdriver_spec.rb:16:in `block (2 levels) in <top (required)>'
    815:  2.2) Failure/Error:
    816:  Selenium::Server.get(:latest,
    817:  background: true,
    818:  args: %w[--selenium-manager true --enable-managed-downloads true])
    819:  TypeError:
    820:  no implicit conversion of String into Integer
    821:  # ./spec/drivers/remote_webdriver_spec.rb:10:in `block (2 levels) in <top (required)>'
    822:  # ./spec/drivers/remote_webdriver_spec.rb:17:in `block (2 levels) in <top (required)>'
    823:  3) Remote WebDriver uploads
    824:  Got 0 failures and 2 other errors:
    825:  3.1) Failure/Error:
    826:  Selenium::Server.get(:latest,
    827:  background: true,
    828:  args: %w[--selenium-manager true --enable-managed-downloads true])
    829:  TypeError:
    830:  no implicit conversion of String into Integer
    831:  # ./spec/drivers/remote_webdriver_spec.rb:10:in `block (2 levels) in <top (required)>'
    832:  # ./spec/drivers/remote_webdriver_spec.rb:16:in `block (2 levels) in <top (required)>'
    833:  3.2) Failure/Error:
    834:  Selenium::Server.get(:latest,
    835:  background: true,
    836:  args: %w[--selenium-manager true --enable-managed-downloads true])
    837:  TypeError:
    838:  no implicit conversion of String into Integer
    839:  # ./spec/drivers/remote_webdriver_spec.rb:10:in `block (2 levels) in <top (required)>'
    840:  # ./spec/drivers/remote_webdriver_spec.rb:17:in `block (2 levels) in <top (required)>'
    841:  4) Remote WebDriver downloads
    842:  Got 0 failures and 2 other errors:
    843:  4.1) Failure/Error:
    844:  Selenium::Server.get(:latest,
    845:  background: true,
    846:  args: %w[--selenium-manager true --enable-managed-downloads true])
    847:  TypeError:
    848:  no implicit conversion of String into Integer
    849:  # ./spec/drivers/remote_webdriver_spec.rb:10:in `block (2 levels) in <top (required)>'
    850:  # ./spec/drivers/remote_webdriver_spec.rb:16:in `block (2 levels) in <top (required)>'
    851:  4.2) Failure/Error:
    852:  Selenium::Server.get(:latest,
    853:  background: true,
    854:  args: %w[--selenium-manager true --enable-managed-downloads true])
    855:  TypeError:
    856:  no implicit conversion of String into Integer
    857:  # ./spec/drivers/remote_webdriver_spec.rb:10:in `block (2 levels) in <top (required)>'
    858:  # ./spec/drivers/remote_webdriver_spec.rb:17:in `block (2 levels) in <top (required)>'
    859:  Finished in 9 minutes 49 seconds (files took 6.39 seconds to load)
    860:  185 examples, 4 failures, 41 pending
    861:  Failed examples:
    862:  rspec ./spec/browsers/firefox_spec.rb:59 # Firefox Service sets log level
    863:  rspec ./spec/drivers/remote_webdriver_spec.rb:19 # Remote WebDriver starts remotely
    864:  rspec ./spec/drivers/remote_webdriver_spec.rb:26 # Remote WebDriver uploads
    865:  rspec ./spec/drivers/remote_webdriver_spec.rb:42 # Remote WebDriver downloads
    866:  ##[error]Final attempt failed. Child_process exited with error code 1
    

    ✨ CI feedback usage guide:

    The CI feedback tool (/checks) automatically triggers when a PR has a failed check.
    The tool analyzes the failed checks and provides several feedbacks:

    • Failed stage
    • Failed test name
    • Failure summary
    • Relevant error logs

    In addition to being automatically triggered, the tool can also be invoked manually by commenting on a PR:

    /checks "https://github.com/{repo_name}/actions/runs/{run_number}/job/{job_number}"
    

    where {repo_name} is the name of the repository, {run_number} is the run number of the failed check, and {job_number} is the job number of the failed check.

    Configuration options

    • enable_auto_checks_feedback - if set to true, the tool will automatically provide feedback when a check is failed. Default is true.
    • excluded_checks_list - a list of checks to exclude from the feedback, for example: ["check1", "check2"]. Default is an empty list.
    • enable_help_text - if set to true, the tool will provide a help message with the feedback. Default is true.
    • persistent_comment - if set to true, the tool will overwrite a previous checks comment with the new feedback. Default is true.
    • final_update_message - if persistent_comment is true and updating a previous checks message, the tool will also create a new message: "Persistent checks updated to latest commit". Default is true.

    See more information about the checks tool in the docs.

    Copy link

    netlify bot commented Oct 15, 2024

    Deploy Preview for selenium-dev ready!

    Name Link
    🔨 Latest commit a4721fc
    🔍 Latest deploy log https://app.netlify.com/sites/selenium-dev/deploys/670f658fc5ca4b000803b1f8
    😎 Deploy Preview https://deploy-preview-1999--selenium-dev.netlify.app
    📱 Preview on mobile
    Toggle QR Code...

    QR Code

    Use your smartphone camera to open QR code link.

    To edit notification comments on pull requests, go to your Netlify site configuration.

    Copy link
    Contributor Author

    renovate bot commented Oct 16, 2024

    Edited/Blocked Notification

    Renovate will not automatically rebase this PR, because it does not recognize the last commit author and assumes somebody else may have edited the PR.

    You can manually request rebase by checking the rebase/retry box above.

    ⚠️ Warning: custom changes will be lost.

    @harsha509 harsha509 merged commit 7391ac0 into trunk Oct 16, 2024
    11 checks passed
    @harsha509 harsha509 deleted the renovate/rubocop-1.x-lockfile branch October 16, 2024 07:40
    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