forked from modelcontextprotocol/python-sdk
-
Notifications
You must be signed in to change notification settings - Fork 0
RDCIST-3884: Add pipeline setup #3
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
Closed
Closed
Changes from all commits
Commits
Show all changes
38 commits
Select commit
Hold shift + click to select a range
1b39765
add pipeline setup, CODEOWNERS and stuff
OS-katherinebatista e2c0569
move files
OS-katherinebatista 1288c7e
Update azure-pipeline-pr.yaml for Azure Pipelines
OS-katherinebatista 8e869d9
bump version rd-ai-azure-pipeline-templates
OS-katherinebatista e5f19f4
Merge remote-tracking branch 'origin/RDCIST-3884/add-pipeline-setup' …
OS-katherinebatista 10aeacb
downgrade uv version
OS-katherinebatista 9666903
fix makefile
OS-katherinebatista 853725b
update dependencies in pyproject.toml and uv.lock
OS-katherinebatista 86bef84
update dependencies in pyproject.toml and uv.lock
OS-katherinebatista 8ba31dd
fix makefile - coverage
OS-katherinebatista f51eb9f
fix dynamic version
OS-katherinebatista ae1e69d
try fix coverage
OS-katherinebatista 9fba4b7
try fix coverage
OS-katherinebatista c353ebf
add exclusions to sonarcloud
OS-katherinebatista 32d7c0d
fix sonar cloud name
OS-katherinebatista 7732ed8
Empty-Commit
OS-katherinebatista 6b8f77e
fix precommit issues
OS-katherinebatista fdb5e62
fix precommit issues
OS-katherinebatista 7dc48fb
fix gha
OS-katherinebatista 5457cb9
precommit fixes
OS-katherinebatista 22ff96e
precommit fixes
OS-katherinebatista 44e7f1c
Set up CI with Azure Pipelines
OS-katherinebatista da837cf
Empty-Commit
OS-katherinebatista b1932df
update project name to mcp-python-sdk
OS-katherinebatista c88924f
update project name to mcp-python-sdk
OS-katherinebatista 7024f43
update uv lock
OS-katherinebatista 14db9b1
update pkg name
OS-katherinebatista c498c30
update pkg name
OS-katherinebatista c2bf52c
update pkg name
OS-katherinebatista bd8763e
update pkg name
OS-katherinebatista e51dfa9
update pkg name
OS-katherinebatista b39ab3f
update pkg name
OS-katherinebatista 45cb3f1
update pkg name
OS-katherinebatista c6c1b44
update pkg name
OS-katherinebatista 4a82f28
make main checks only run on main
OS-katherinebatista 40d2284
fix issue with validate PR labels/titles
OS-katherinebatista 7054f6c
code review
OS-katherinebatista 92aaa3a
fix commit version of reusable workflows
OS-katherinebatista File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or 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 @@ | ||
| * @OutSystems/data-fabric-clients |
This file contains hidden or 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,21 @@ | ||
| <!-- | ||
| You can check for more info about PR conventions here https://outsystemsrd.atlassian.net/wiki/spaces/RCP/pages/1544487638/Pull+Requests | ||
| Conventions: <jira-issue>: <subject> | ||
| <jira-issue> - Issue id, eg: RSAT-0000 (no need for # as in svn). This will link the branch and later on the pull request to the issue id in Jira | ||
| <subject> - a short and concise description of the changes, usually the summary of the jira issue | ||
| --> | ||
|
|
||
| ### Jira Issue | ||
| <!-- Please change the <jira-issue> tag to your jira issue (ex: RAR-131) --> | ||
|
|
||
| [<jira-issue>](https://outsystemsrd.atlassian.net/browse/<jira-issue>) | ||
|
|
||
| ### Context | ||
| <!--- Why is this change required? What problem does it solve? --> | ||
|
|
||
| ### Impacts | ||
| <!-- What are the consequences of the changes and possible implications in clients --> | ||
| - [ ] Breaking Change | ||
| - [ ] Behavioral breaking change | ||
| - [ ] Refactor (big refactor on a sensitive asset ) | ||
| - [ ] Requires revision on public documentation | ||
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 hidden or 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 |
|---|---|---|
|
|
@@ -4,9 +4,6 @@ on: | |
| push: | ||
| branches: | ||
| - main | ||
| - "v*.*.*" | ||
| tags: | ||
| - "v*.*.*" | ||
|
|
||
| jobs: | ||
| checks: | ||
|
|
||
This file was deleted.
Oops, something went wrong.
This file contains hidden or 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
This file contains hidden or 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,11 @@ | ||
| name: Validate pull request labels | ||
|
|
||
| on: | ||
| pull_request: | ||
| types: [labeled, unlabeled, synchronize] | ||
|
|
||
| jobs: | ||
| check-label: | ||
| uses: OutSystems/rd.github-reusable-workflows/.github/workflows/validate-pr-labels.yaml@59bd1315cfd3558f93edff0a994430dab78812fa #v2.0.7 | ||
| with: | ||
| validate-semVer: false |
This file contains hidden or 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,11 @@ | ||
| name: Validate pull request title | ||
|
|
||
| on: | ||
| pull_request: | ||
| types: [opened, edited, synchronize, reopened] | ||
|
|
||
| jobs: | ||
| build: | ||
| uses: OutSystems/rd.github-reusable-workflows/.github/workflows/validate-pr-title.yaml@59bd1315cfd3558f93edff0a994430dab78812fa | ||
| with: | ||
| validate-semVer: false |
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I suggest removing "Breaks existent APIs" since it's not an API.