-
Notifications
You must be signed in to change notification settings - Fork 57
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
0d48590
commit 34f87a3
Showing
8 changed files
with
1,140 additions
and
733 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,50 @@ | ||
baseBranch: main | ||
|
||
changeKinds: | ||
internal: | ||
versionType: none | ||
title: Internal | ||
description: Internal changes that are not user facing | ||
|
||
fix: | ||
versionType: patch | ||
title: Bug Fix | ||
description: Fixes to existing features | ||
|
||
dependencies: | ||
versionType: patch | ||
title: Bump dependencies | ||
description: Bumps dependencies | ||
|
||
feature: | ||
versionType: minor | ||
title: Feature | ||
description: Adds new features | ||
|
||
deprecation: | ||
versionType: minor | ||
title: Deprecation | ||
description: Change that deprecate an existing feature but is not breaking. | ||
|
||
breaking: | ||
versionType: major | ||
title: Breaking Change | ||
description: Changes that break existing features | ||
|
||
versionPolicies: | ||
- name: python-generator | ||
type: lockstep | ||
step: minor | ||
packages: | ||
- "@azure-tools/typespec-python" | ||
- "@autorest/python" | ||
|
||
changelog: ["@chronus/github/changelog", { repo: "azure/autorest.python" }] | ||
|
||
ignore: | ||
- "@typespec/*" | ||
|
||
changedFiles: | ||
- "!**/*.md" | ||
- "!**/*.test.ts" | ||
- "!**/test_*.py" |
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,28 @@ | ||
name: PR Tools | ||
trigger: none | ||
pr: | ||
- providerhub | ||
- release/* | ||
|
||
extends: | ||
template: /eng/pipelines/templates/1es-redirect.yml | ||
parameters: | ||
variables: | ||
- template: /eng/pipelines/templates/variables/globals.yml@self | ||
stages: | ||
- stage: change_comment | ||
jobs: | ||
- job: change_comment | ||
displayName: Describe changes on PR | ||
condition: and(succeeded(), eq(startsWith(variables['System.PullRequest.SourceBranch'], 'publish/'), false)) | ||
pool: | ||
name: $(LINUXPOOL) | ||
image: $(LINUXVMIMAGE) | ||
os: linux | ||
steps: | ||
- checkout: self | ||
|
||
- script: npx -p @chronus/[email protected] chronus-github-pr-commenter verify | ||
displayName: Make comment about changes | ||
env: | ||
GITHUB_TOKEN: $(azuresdk-github-pat) |
This file contains 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
Oops, something went wrong.