Skip to content

Commit c792d1b

Browse files
Apply text suggestions from code review
Co-authored-by: Juliet Shackell <63259011+jshackell-sfdc@users.noreply.github.com>
1 parent dce3ad1 commit c792d1b

3 files changed

Lines changed: 8 additions & 8 deletions

File tree

messages/devops.project.list.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,18 +4,18 @@ List all DevOps Center projects in a Salesforce org.
44

55
# description
66

7-
Lists all DevOps Center projects available in the specified org by querying the DevopsProject object. Returns project Id, Name, and Description for each project found.
7+
This command queries the DevopsProject standard object and returns the project Id, Name, and Description for each project found.
88

99
# flags.target-org.summary
1010

1111
Username or alias of the DevOps Center org.
1212

1313
# examples
1414

15-
- List all DevOps Center projects in an org.
15+
- List all DevOps Center projects in an org with alias "my-devops-org":
1616

1717
<%= config.bin %> <%= command.id %> --target-org my-devops-org
1818

19-
- List projects using a username.
19+
- List projects using an org's username:
2020

2121
<%= config.bin %> <%= command.id %> --target-org devops-center@example.com

messages/devops.work-item.create.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ Create a new work item in a DevOps Center project.
44

55
# description
66

7-
Creates a new DevOps Center work item in the specified project using the Connect API. Requires a project ID (obtainable from `sf devops project list`) and a subject for the work item.
7+
The command creates the work item using the Connect API. Requires a project ID and a subject for the new work item; run the `devops project list` command to get the IDs for all existing projects.
88

99
# flags.target-org.summary
1010

@@ -28,6 +28,6 @@ Description of the new work item.
2828

2929
<%= config.bin %> <%= command.id %> --target-org my-devops-org --project-id 0Hn000000000001 --subject "Fix login bug"
3030

31-
- Create a work item with a subject and description.
31+
- Create a work item with a subject and description:
3232

3333
<%= config.bin %> <%= command.id %> --target-org my-devops-org --project-id 0Hn000000000001 --subject "Add dark mode" --description "Implement dark mode toggle in settings page"

messages/devops.work-item.list.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ List all work items for a DevOps Center project.
44

55
# description
66

7-
Lists work items from a Salesforce DevOps Center project. Each work item includes branch, environment, and repository details needed for checkout and promotion. Requires a project ID which can be obtained from `sf devops project list`.
7+
Each work item displays the branch, environment, and repository details needed for checkout and promotion. Requires a project ID; run the `devops project list` command to get the IDs for all existing projects.
88

99
# flags.target-org.summary
1010

@@ -16,10 +16,10 @@ ID of the DevOps Center project to list work items for.
1616

1717
# examples
1818

19-
- List work items for a specific project.
19+
- List work items for a specific project in the DevOps org with alias "my-devops-org":
2020

2121
<%= config.bin %> <%= command.id %> --target-org my-devops-org --project-id 0Hn000000000001
2222

23-
- List work items with JSON output.
23+
- List work items using JSON output:
2424

2525
<%= config.bin %> <%= command.id %> --target-org my-devops-org --project-id 0Hn000000000001 --json

0 commit comments

Comments
 (0)