Skip to content

Conversation

@renovate
Copy link
Contributor

@renovate renovate bot commented Apr 23, 2025

Welcome to Renovate! This is an onboarding PR to help you understand and configure settings before regular Pull Requests begin.

🚦 To activate Renovate, merge this Pull Request. To disable Renovate, simply close this Pull Request unmerged.


Detected Package Files

  • .github/workflows/build.yml (github-actions)
  • .github/workflows/report_test_results.yml (github-actions)
  • .github/workflows/run_acceptance_tests.yml (github-actions)
  • .github/workflows/run_unit_tests.yml (github-actions)
  • .github/workflows/sync_github_issues_to_azdo.yml (github-actions)
  • pyproject.toml (pep621)
  • pyproject.toml (poetry)

Configuration Summary

Based on the default config's presets, Renovate will:

  • Start dependency updates only once this onboarding PR is merged
  • Hopefully safe environment variables to allow users to configure.
  • Show all Merge Confidence badges for pull requests.
  • Enable Renovate Dependency Dashboard creation.
  • Use semantic commit type fix for dependencies and chore for all others if semantic commits are in use.
  • Ignore node_modules, bower_components, vendor and various test/tests (except for nuget) directories.
  • Group known monorepo packages together.
  • Use curated list of recommended non-monorepo package groupings.
  • Apply crowd-sourced package replacement rules.
  • Apply crowd-sourced workarounds for known problems with packages.
  • Run lock file maintenance (updates) early Monday mornings.
  • Automerge patch upgrades if they pass tests.
  • Schedule automerge daily before 4 AM.

🔡 Do you want to change how Renovate upgrades your dependencies? Add your custom config to renovate.json in this branch. Renovate will update the Pull Request description the next time it runs.


What to Expect

With your current configuration, Renovate will create 7 Pull Requests:

chore(deps): update dependency mako to v1.3.10
  • Schedule: ["at any time"]
  • Branch name: users/renovate/mako-1.3.x-lockfile
  • Merge into: main
  • Upgrade mako to 1.3.10
chore(deps): update dependency black to v24.10.0
  • Schedule: ["at any time"]
  • Branch name: users/renovate/black-24.x-lockfile
  • Merge into: main
  • Upgrade black to 24.10.0
chore(deps): update dependency pytest to v8.3.5
  • Schedule: ["at any time"]
  • Branch name: users/renovate/pytest-8.x-lockfile
  • Merge into: main
  • Upgrade pytest to 8.3.5
chore(deps): update dependency python to 3.13
  • Schedule: ["at any time"]
  • Branch name: users/renovate/python-3.x
  • Merge into: main
  • Upgrade python to 3.13
chore(deps): update dependency black to v25
  • Schedule: ["at any time"]
  • Branch name: users/renovate/black-25.x-lockfile
  • Merge into: main
  • Upgrade black to 25.1.0
chore(deps): update dependency pytest-cov to v6
  • Schedule: ["at any time"]
  • Branch name: users/renovate/pytest-cov-6.x-lockfile
  • Merge into: main
  • Upgrade pytest-cov to 6.1.1
chore(deps): lock file maintenance
  • Schedule: ["* 0-3 * * 1"]
  • Branch name: users/renovate/lock-file-maintenance
  • Merge into: main
  • Regenerate lock files to use latest dependency versions

🚸 Branch creation will be limited to maximum 2 per hour, so it doesn't swamp any CI resources or overwhelm the project. See docs for prhourlylimit for details.


❓ Got questions? Check out Renovate's Docs, particularly the Getting Started section.
If you need any further assistance then you can also request help here.


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

@github-actions
Copy link

github-actions bot commented Apr 23, 2025

Test Results

 12 files  ±0   12 suites  ±0   9s ⏱️ -2s
 54 tests ±0   53 ✅ ±0   1 💤 ±0  0 ❌ ±0 
636 runs  ±0  576 ✅ ±0  60 💤 ±0  0 ❌ ±0 

Results for commit 1dc4a3e. ± Comparison against base commit c34a6fc.

♻️ This comment has been updated with latest results.

@wchung-ni
Copy link
Collaborator

@tsengguanyung By referring the nidaqmx, we may need to move this file to .github folder and add few "extends". I will check the extends from here, probably changes is needed on this PR.

In summary, this commit will enable automation action below:
- Scan repo package files
- Check outdated dependencies
- Create Pull Request(PR) to update dependencies
- Auto merge the PR after test is passed (depends on "extends" option)

The modification made by referring [daqmx](ni/nidaqmx-python@84df6ab)
1. Moves renovate.json to .github folder (Source0[https://github.com/renovatebot/renovate/blob/main/docs/usage/getting-started/installing-onboarding.md?utm_source=chatgpt.com#configuration-location]
2. Add "branchPrefix" - this uses to add prefix on all branches created by chore (For more readable branch name from PR)
3. Adding automation option in "extends" to merge update from chore (see reference)[https://docs.renovatebot.com/presets-default/]

Signed-off-by: Wai Kin Chung <wai.kin.chung@ni.com>
File is modified and moved to .github/renovate.json

Signed-off-by: Wai Kin Chung <wai.kin.chung@ni.com>
@wchung-ni
Copy link
Collaborator

wchung-ni commented Apr 25, 2025

In summary, this Pull Request (PR) will enable automation action below:

  • Scan repo package files
  • Check outdated dependencies
  • Create PR to update dependencies
  • Auto merge the PR after test is passed (depends on "extends" option)

The modification made by referring daqmx

  1. Move renovate.json to .github folder (Source)
  2. Add "branchPrefix" - this uses to add prefix on all branches created by chore (For more readable branch name from PR)
  3. Add automation option in "extends" to merge update from chore (see reference)

FYI,
@tsengguanyung , @CHrislian-NI

@tsengguanyung
Copy link
Collaborator

@tsengguanyung By referring the nidaqmx, we may need to move this file to .github folder and add few "extends". I will check the extends from here, probably changes is needed on this PR.

Is there anything else need to be done for this PR?

@wchung-ni
Copy link
Collaborator

wchung-ni commented Apr 28, 2025

@tsengguanyung By referring the nidaqmx, we may need to move this file to .github folder and add few "extends". I will check the extends from here, probably changes is needed on this PR.

Is there anything else need to be done for this PR?

🚦 To activate Renovate, merge this Pull Request. To disable Renovate, simply close this Pull Request unmerged.
Based on my understanding, it should be working after this PR merged into main.

@wchung-ni wchung-ni merged commit cce1583 into main May 9, 2025
15 checks passed
@wchung-ni wchung-ni deleted the renovate/configure branch June 10, 2025 01:55
@wchung-ni wchung-ni restored the renovate/configure branch June 10, 2025 01:55
@wchung-ni wchung-ni deleted the renovate/configure branch June 10, 2025 01: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.

4 participants