-
Notifications
You must be signed in to change notification settings - Fork 189
Adds usage info to each task #20
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
base: main
Are you sure you want to change the base?
Conversation
| # - task: choco | ||
| # inputs: | ||
| # packages: "vscode, azure-cli" | ||
| # Versions: "{ 'vscode'='1.80.0'; 'azure-cli'='2.50.0' }" | ||
| # additionalOptions: "--verbose --ignore-dependencies" |
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.
| # - task: choco | |
| # inputs: | |
| # packages: "vscode, azure-cli" | |
| # Versions: "{ 'vscode'='1.80.0'; 'azure-cli'='2.50.0' }" | |
| # additionalOptions: "--verbose --ignore-dependencies" | |
| #- task: choco | |
| # inputs: | |
| # package: "vscode" | |
| # version: "1.80.0" | |
| # ignoreChecksums: true | |
| # - task: choco | |
| # inputs: | |
| # package: "azure-cli" | |
| # version: "2.50.0" |
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.
Two examples that I found worked well with the LLMs are:
examples:
- task: choco
description: install OracleJDK 17.0.1
inputs:
package: oraclejdk
version: 17.0.1
- task: choco
description: install notepad++
inputs:
package: notepadplusplus| Ensure-Chocolatey -ChocoExePath "$choco" | ||
|
|
||
| Write-Host "Preparing to install Chocolatey packages: $Packages." | ||
| Install-Packages -ChocoExePath "$choco" -Packages $Packages -PackageVersions $PackageVersions -AdditionalOptions $AdditionalOptions |
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'm not sure you intended this change in choco.ps1, did you?
| # - task: choco | ||
| # inputs: | ||
| # packages: "vscode, azure-cli" | ||
| # Versions: "{ 'vscode'='1.80.0'; 'azure-cli'='2.50.0' }" | ||
| # additionalOptions: "--verbose --ignore-dependencies" |
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.
Two examples that I found worked well with the LLMs are:
examples:
- task: choco
description: install OracleJDK 17.0.1
inputs:
package: oraclejdk
version: 17.0.1
- task: choco
description: install notepad++
inputs:
package: notepadplusplus| @@ -1,4 +1,12 @@ | |||
| # This is a simple powershell command execution task for Dev Box. | |||
| # | |||
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.
Examples that I saw worked well with the LLMs were:
examples:
- task: powershell
description: print hello world
inputs:
command: "Write-Host hello, world!"
- task: powershell
description: run script
inputs:
command: "./script.ps1"
workingDirectory: C:\\provisioning\\temp|
I think #28 overrides this PR. |
No description provided.