-
-
Notifications
You must be signed in to change notification settings - Fork 126
feat: add azure devops support #8586
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
Open
olblak
wants to merge
35
commits into
updatecli:main
Choose a base branch
from
olblak:issue/7090
base: main
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Changes from all commits
Commits
Show all changes
35 commits
Select commit
Hold shift + click to select a range
09e0816
feat: add azure devops support
olblak f63c5b8
feat: add azuredevops e2e test
olblak 5cf04ae
chore: add organization parameter
olblak 346544b
fix: align azure devops pr body with bitbucket
olblak be21b62
fix: add missing test
olblak e54a07a
fix: add missing azuredevops policy scaffold asset
olblak 18c7a65
feat: add azuredevopssearch to update multiple repositories
olblak fd0a993
Merge branch 'main' into issue/7090
olblak 6afc516
Merge branch 'main' into issue/7090
olblak b22f5aa
Merge branch 'main' into issue/7090
olblak 0019d6b
chore: go mod tidy
olblak aec2766
chore: make projet and repository optional
olblak 0a0e665
fix: correctly restore unsupportedCapabilities
olblak a8e6040
feat: support reset pullrequest description
olblak 86baf5d
Merge branch 'main' into issue/7090
olblak eed6796
feat: allow to use global env variable to auth on azure devops
olblak 69bf0fa
fix: azuredevops/pullrequest test
olblak 526c60a
Merge branch 'main' into issue/7090
olblak c9af8d8
fix: e2e pipeline title
olblak 2512001
Merge branch 'issue/7090' of github.com:olblak/updatecli into issue/7090
olblak 58ac567
fix: git capabilities reset
olblak 21c6f03
feat: allow azuredevopssearch to search all project by default
olblak 0708d26
fix: use filtercontain
olblak ae41582
fix: add missing organisation in scaffold config
olblak 72a0f48
Merge branch 'main' into issue/7090
olblak f533cb4
Merge branch 'main' into issue/7090
olblak 8002126
doc: update README.md to mention scm
olblak bb68d4f
Merge branch 'issue/7090' of github.com:olblak/updatecli into issue/7090
olblak c9bebcc
doc: remove toc
olblak 5360368
fix: e2e test
olblak 0af38bc
Merge branch 'main' into issue/7090
olblak 62519fd
Fix e2e test to ignore warning: content
olblak a5da238
Merge branch 'issue/7090' of github.com:olblak/updatecli into issue/7090
olblak a226571
fix: azurededvopssearch default env credentials
olblak b36486b
feat: add missing scaffold azuredevopssearch scm
olblak 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
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,44 @@ | ||
| name: Test Azure DevOps scm | ||
| pipelineid: azuredevops/scm | ||
|
|
||
| scms: | ||
| azuredevops: | ||
| kind: azuredevops | ||
| spec: | ||
| organization: updatecli | ||
| project: "updatecli-test" | ||
| repository: "updatecli-test" | ||
| branch: main | ||
|
|
||
| sources: | ||
| license: | ||
| name: Retrieve license file content | ||
| kind: file | ||
| scmid: azuredevops | ||
| spec: | ||
| file: LICENSE | ||
|
|
||
| conditions: | ||
| license: | ||
| name: Retrieve license file content | ||
| kind: file | ||
| sourceid: license | ||
| scmid: azuredevops | ||
| spec: | ||
| file: LICENSE | ||
|
|
||
| targets: | ||
| license: | ||
| name: Update license title | ||
| kind: file | ||
| disablesourceinput: true | ||
| scmid: azuredevops | ||
| spec: | ||
| file: LICENSE | ||
| content: "# Title" | ||
| line: 1 | ||
|
|
||
| actions: | ||
| default: | ||
| kind: azuredevops/pullrequest | ||
| scmid: azuredevops | ||
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,28 @@ | ||
| name: Test Azure Devops scm | ||
| pipelineid: azuredevops/scm | ||
|
|
||
| scms: | ||
| azuredevops: | ||
| kind: azuredevopssearch | ||
| spec: | ||
| organization: updatecli | ||
| #project: "^updatecli-test$" | ||
| #repository: "^updatecli-test$" | ||
| branch: "^main$" | ||
|
|
||
| targets: | ||
| readme: | ||
| name: Test update | ||
| kind: yaml | ||
| disablesourceinput: true | ||
| scmid: azuredevops | ||
| spec: | ||
| file: .github/workflows/updatecli.yaml | ||
| key: "$.permissions.contents" | ||
| value: read | ||
|
|
||
| actions: | ||
| default: | ||
| title: Change readme title | ||
| kind: azuredevops/pullrequest | ||
| scmid: azuredevops |
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
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
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
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.
Uh oh!
There was an error while loading. Please reload this page.