-
Notifications
You must be signed in to change notification settings - Fork 8
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* update * update * fix build * fix * update * fix * fix * update * use v6 * update * update * update * fix build number * fix * remove environmentChecks * update * cleanup * update * test * test * update * test * update * update * test * update * test * update * test * update * update * update * fix my shit * fix * fix * cleanup * fix * update * update * update * update * test * fix * update * fix * update * fix * test * fix * test * update * cleanup * fix * test * fix * fix * test * update * test * fix * update * fix * fix * test * test * test * update * update * fix * test * test * update * test * update * test * test * test * update * fix try * ads sort * update envOrder * test * cleanup * update * update * fix * fix * fix * update * test * update * test * test * test * update * fix * update * fix * update * update * update * update * update * cleanup * update * update * test * cleanup * add "vso.environment_manage" * extension update * update * update * update * add "vso.agentpools" * update * test * update * test * test * update * update * update * update * test * test * update * fix * test * test * update * test * disable approvals for AzDo 2020 Servers * update * update * update * cleanup * update * test * update * update * update * update * fix * update * test * fix * update * update * update * update * update * fix * fix * cleanup * update * update * update * update * update * fix * update * fix * test * fix * test * update * update * update * test * update * add sort * test * update * cleanup * update * columns rename * fix * update * update * update * update * fix * test * test * fix * update * update * test * update * update * update * test * ret * update * test * update * update view * test * test * test * fix * update * update * test * update * cleanup * cleanup * cleanup * fix * update * update * update * update * update * update * update * update * update * fix * test * update * update * update * test * update * fix * test * test * test * test * test * update * update * fix * fix * cleanup * add * fix * release note update * fix * update * update * cleanup * update * test * update * test * fix
- Loading branch information
Showing
18 changed files
with
18,964 additions
and
14,710 deletions.
There are no files selected for viewing
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 |
---|---|---|
@@ -1,2 +1,3 @@ | ||
node_modules | ||
dist | ||
dist | ||
test.json |
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 |
---|---|---|
@@ -1,5 +1,8 @@ | ||
## Issues fixes | ||
|
||
- ### [Issue0177](https://github.com/expertasolutions/AzDo.VstsDashboard/issues/177) | ||
- Add Re-Activation message, in order to prepare the field for the new Release with Yaml Pipeline Stage Deployment Health | ||
- Add back the option to ***Sent a request*** button. | ||
- ### [Issue0170](https://github.com/expertasolutions/AzDo.VstsDashboard/issues/170) | ||
- Add Pipeline Stage Deployment Health (Stage Status) visible under 'Deployment Health Columns. | ||
- Refactor general UI | ||
|
||
- ### [Issue0180](https://github.com/expertasolutions/AzDo.VstsDashboard/issues/180) | ||
- Persist the last selected View (Summary|All Runs) selected by the user. |
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
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,33 @@ | ||
parameters: | ||
- name: publisherId | ||
type: string | ||
- name: extensionId | ||
type: string | ||
- name: extensionName | ||
type: string | ||
- name: updateTasksId | ||
type: boolean | ||
default: false | ||
- name: extensionVisibility | ||
type: string | ||
- name: shareWith | ||
type: string | ||
- name: releaseNoteAction | ||
type: string | ||
- name: releaseNoteVersion | ||
type: string | ||
- name: releaseNoteDisplayName | ||
type: string | ||
- name: releaseNoteIsDraft | ||
type: boolean | ||
default: false | ||
- name: releaseNoteIsPreRelease | ||
type: boolean | ||
default: false | ||
|
||
steps: | ||
- task: VersionExtractor@5 | ||
name: build | ||
displayName: 'Version extractor digit' | ||
inputs: | ||
stringToAnalyze: '$(build.buildnumber)' |
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,121 @@ | ||
name: testlouis-v1.$(date:yy)$(DayOfYear)$(rev:.r)-$(Build.SourceBranchName) | ||
|
||
trigger: | ||
- master | ||
- Issue* | ||
- Delivery* | ||
|
||
pr: | ||
- master | ||
- Delivery* | ||
|
||
stages: | ||
- stage: Build | ||
jobs: | ||
- job: Build | ||
pool: | ||
vmImage: 'windows-latest' | ||
demand: npm | ||
workspace: | ||
clean: true | ||
steps: | ||
|
||
- task: UseNode@1 | ||
displayName: 'Use Node 10.x' | ||
|
||
- task: VersionExtractor@5 | ||
name: build | ||
displayName: 'Version extractor digit' | ||
inputs: | ||
stringToAnalyze: '$(Build.BuildNumber)' | ||
|
||
- stage: ExpertaPrivatePreview | ||
dependsOn: Build | ||
condition: and( | ||
succeeded(), | ||
or( | ||
eq(variables['build.sourceBranch'], 'refs/heads/master') | ||
, eq(variables['build.sourceBranch'], 'refs/heads/feature/*') | ||
, eq(variables['build.sourceBranch'], 'refs/heads/Issue0170b') | ||
, eq(variables['build.sourceBranch'], 'refs/heads/Delivery/*') | ||
) | ||
) | ||
jobs: | ||
- deployment: DeployExtension | ||
pool: | ||
vmImage: macOS-latest | ||
demands: npm | ||
#environment: ExpertaPrivatePreview | ||
environment: ExpertaPrivate | ||
strategy: | ||
runOnce: | ||
deploy: | ||
steps: | ||
- template: _pipelineTemplates/extension-deploy-fake.yml | ||
parameters: | ||
publisherId: ExpertaPreview | ||
extensionId: pvprCICDDashboard | ||
extensionName: 'Private Preview - CI/CD Dashboard' | ||
updateTasksId: true | ||
extensionVisibility: privatepreview | ||
shareWith: experta | ||
releaseNoteAction: create | ||
releaseNoteVersion: '$(build.fullVersion)' | ||
releasenoteDisplayName: 'Create Draft Release Note' | ||
releaseNoteIsDraft: true | ||
|
||
- stage: ExpertaPrivate | ||
dependsOn: ExpertaPrivatePreview | ||
condition: and( | ||
succeeded(), | ||
or( | ||
eq(variables['build.sourceBranch'], 'refs/heads/master') | ||
, eq(variables['build.sourceBranch'], 'refs/heads/Issue0170b') | ||
) | ||
) | ||
jobs: | ||
- deployment: DeployExtension | ||
pool: | ||
vmImage: macOS-latest | ||
demands: npm | ||
environment: ExpertaPrivate | ||
strategy: | ||
runOnce: | ||
deploy: | ||
steps: | ||
- template: _pipelineTemplates/extension-deploy-fake.yml | ||
parameters: | ||
publisherId: ExpertaPreview | ||
extensionId: prCICDDashboard | ||
extensionName: 'Private - CI/CD Dashboard' | ||
updateTasksId: true | ||
extensionVisibility: private | ||
shareWith: experta | ||
releaseNoteAction: edit | ||
releaseNoteVersion: '$(build.fullVersion)' | ||
releasenoteDisplayName: 'Update Draft to Pre-Release notes' | ||
releaseNoteIsPreRelease: true | ||
|
||
- stage: ExpertaPublicMarketplace | ||
dependsOn: ExpertaPrivate | ||
condition: and(succeeded(), eq(variables['build.sourceBranch'], 'refs/heads/master')) | ||
jobs: | ||
- deployment: DeployExtension | ||
pool: | ||
vmImage: macOS-latest | ||
demands: npm | ||
environment: ExpertaPublicMarketplace | ||
strategy: | ||
runOnce: | ||
deploy: | ||
steps: | ||
- template: _pipelineTemplates/extension-deploy-fake.yml | ||
parameters: | ||
publisherId: experta | ||
extensionId: cicd-dashboard | ||
extensionName: 'CI/CD Dashboard' | ||
extensionVisibility: public | ||
shareWith: experta | ||
releaseNoteAction: edit | ||
releaseNoteVersion: '$(build.fullVersion)' | ||
releasenoteDisplayName: 'Update Pre-Release to Release notes' |
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.