Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
44 changes: 44 additions & 0 deletions .chronus/config.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,44 @@
baseBranch: main

changeKinds:
breaking:
versionType: major
title: Breaking Changes
description: Changes that break existing features

feature:
versionType: minor
title: Features Added
description: Adds new features

deprecation:
versionType: minor
title: Other Changes
description: Change that deprecates an existing feature but is not breaking.

fix:
versionType: patch
title: Bugs Fixed
description: Fixes to existing features

dependencies:
versionType: patch
title: Other Changes
description: Bumps dependencies

internal:
versionType: none
title: Other Changes
description: Internal changes that are not user facing

packages:
- path: "sdk/*/*"
type: pip

changelog: ["@chronus/github/changelog", { repo: "azure/azure-sdk-for-python" }]

changedFiles:
- "sdk/**"
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

no opinions but do we also want to skip:

  • *.json - e.g. apiview-properties.json (updated when tsp regeneration happens so prob not), assets.json (related to tests), test_resources.json
  • *.txt - dev_requirements.txt
  • samples/
  • tests/ - since we prob don't want to track conftest.py, wrappers, preparers, etc.
  • stress/
  • *.yml (ci.yml, tests.yml, maybe not tsp-location.yaml...)
  • mypy.ini

- "!**/*.md"
- "!**/test_*.py"
- "!**/*_test.py"
Loading