Skip to content

Commit f225f0f

Browse files
committed
Applying recommended PR changes
1 parent 784372c commit f225f0f

5 files changed

Lines changed: 30 additions & 29 deletions

File tree

cumulusci/tasks/release_notes/task.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -141,7 +141,7 @@ class ParentPullRequestNotes(BaseGithubTask):
141141
142142
If you have a pull request on branch feature/myFeature that you would like to rebuild notes
143143
for use the branch_name and force options:
144-
- cci task run github_parent_pr_notes --branch-name feature/myFeature --force True
144+
cci task run github_parent_pr_notes --branch-name feature/myFeature --force True
145145
"""
146146
UNAGGREGATED_PR_HEADER = "\r\n\r\n# Unaggregated Pull Requests"
147147

docs/conf.py

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -250,11 +250,16 @@
250250
"index",
251251
"cumulusci.tex",
252252
"CumulusCI Documentation",
253-
r'Cumulus Suite Development Team\\\texttt{sfdo-mrbelvedere@salesforce.com}',
253+
r"""
254+
\parbox{\textwidth}{\raggedleft
255+
{\fontsize{15}{12} Kamalnath Devarakonda}\\
256+
{\fontsize{14}{12}\selectfont Sr. Director, Software Engineering}\\
257+
{\fontsize{13}{12}\selectfont kdevarakonda@salesforce.com}
258+
}
259+
""",
254260
"manual",
255261
)
256262
]
257-
258263
# The name of an image file (relative to this directory) to place at
259264
# the top of the title page.
260265
# latex_logo = None

docs/connected-orgs.md

Lines changed: 14 additions & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -65,25 +65,21 @@ CumulusCI with the name `devhub`.
6565

6666
```console
6767
$ cci org list
68+
Scratch Orgs
6869

69-
Scratch Orgs
70-
│ Name │ Default │ Days │ Expired │ Config │ Domain │
71-
├──────────────────────────|─────────|──────|─────────|──────────────|────────-|
72-
│ dev │ │ 7 │ X | dev │ │
73-
├──────────────────────────|─────────|──────|─────────|──────────────|────────-|
74-
│ feature │ │ 1 │ X | feature │ │
75-
├──────────────────────────|─────────|──────|─────────|──────────────|────────-|
76-
│ prerelease │ │ 1 │ X | prerelease │ │
77-
├──────────────────────────|─────────|──────|─────────|──────────────|────────-|
78-
│ qa │ │ 7 │ X | qa │ │
79-
├──────────────────────────|─────────|──────|─────────|──────────────|────────-|
80-
│ release │ │ 1 │ X | release │ │
81-
82-
83-
Connected Orgs
84-
│ Name │ Default │ Username │ Expires │
85-
├────────|─────────|──────────────────────────────|────────────-|
86-
│ devhub │ │ j.holt@mydomain.devhub │ Persistent │
70+
Default Name Days Expired Config Domain
71+
─────────────────────────────────────────────────────────────
72+
beta 1 beta
73+
dev 7 ✔ dev
74+
feature 1 feature
75+
qa 7 ✔ qa
76+
release 1 release
77+
78+
Connected Orgs
79+
80+
Default Name Username Expires
81+
───────────────────────────────────────────────────────────────────────────────────────
82+
devhub j.holt@mydomain.devhub Persistent
8783

8884
```
8985

docs/continuous-integration.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ variables to provide access to orgs and services [in a headless context](headles
5050

5151
CumulusCI makes it easy to harness the power of second-generation
5252
managed packages to implement an advanced, comprehensive testing process
53-
for both first and second-generation managed package products. This is
53+
for both first-generation and second-generation managed package products. This is
5454
described in [](2gp-testing).
5555

5656
## Further Reading

docs/data.md

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ about Snowfakery is in the section [Generate Fake Data](#generate-fake-data).
4444
In the simplest case, you can extract all data from an org
4545
using the task `capture_sample_data` like this:
4646

47-
```s
47+
```console
4848
$ cci task run capture_sample_data --org orgname
4949
```
5050

@@ -54,7 +54,7 @@ org named `orgname` into the dataset named `default`.
5454
You can then load it into any target org (e.g.
5555
`org2`) like this:
5656

57-
```s
57+
```console
5858
$ cci task run load_sample_data --org org2
5959
```
6060

@@ -88,11 +88,11 @@ If you want different datasets for different scratch org types
8888
loaded by those types by making datasets specific to each one.
8989
This data will load instead of the default dataset.
9090

91-
```s
91+
```console
9292
$ cci task run capture_sample_data --dataset dev --org org1
9393
```
9494

95-
```s
95+
```console
9696
$ cci task run capture_sample_data --dataset qa --org org2
9797
```
9898

@@ -818,7 +818,7 @@ Extract the data for a dataset from an org and persist it to disk.
818818

819819
Example:
820820
```console
821-
cci task run extract_dataset -o mapping datasets/qa/mapping.yml -o sql_path datasets/qa/data.sql --org qa
821+
cci task run extract_dataset -o mapping datasets/qa/mapping.yml -o sql_path datasets/qa/data.sql --org qa
822822
```
823823

824824
(data-load-dataset)=
@@ -845,7 +845,7 @@ persist new Salesforce Ids to storage.
845845
Example:
846846

847847
```console
848-
cci task run load_dataset -o mapping datasets/qa/mapping.yml -o sql_path datasets/qa/data.sql --org qa
848+
cci task run load_dataset -o mapping datasets/qa/mapping.yml -o sql_path datasets/qa/data.sql --org qa
849849
```
850850

851851
### `generate_dataset_mapping`
@@ -915,7 +915,7 @@ after their target records become available.
915915
Example:
916916

917917
```console
918-
cci task run generate_dataset_mapping --org qa -o namespace_prefix my_ns
918+
cci task run generate_dataset_mapping --org qa -o namespace_prefix my_ns
919919
```
920920

921921
### `load_custom_settings`

0 commit comments

Comments
 (0)