Skip to content

Commit ac6d0cd

Browse files
authored
Play around with the campaign template wording. (#346)
1 parent 2ddb447 commit ac6d0cd

File tree

1 file changed

+6
-4
lines changed

1 file changed

+6
-4
lines changed

cmd/src/campaigns_new.go

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -105,19 +105,21 @@ func getGitConfig(attribute string) (string, error) {
105105
const campaignSpecTmpl = `name: NAME-OF-YOUR-CAMPAIGN
106106
description: DESCRIPTION-OF-YOUR-CAMPAIGN
107107
108-
109-
# "on" specifies on which repositories to execute the "steps"
108+
# "on" specifies on which repositories to execute the "steps".
110109
on:
111110
# Example: find all repositories that contain a README.md file.
112111
- repositoriesMatchingQuery: file:README.md
113112
114-
# steps are run in each repository. Each repository's resulting diff is captured.
113+
# "steps" are run in each repository. Each step is run in a Docker container
114+
# with the repository as the working directory. Once complete, each
115+
# repository's resulting diff is captured.
115116
steps:
116117
# Example: append "Hello World" to every README.md
117118
- run: echo "Hello World" | tee -a $(find -name README.md)
118119
container: alpine:3
119120
120-
# Describe the changeset (e.g., GitHub pull request) you want for each repository.
121+
# "changesetTemplate" describes the changeset (e.g., GitHub pull request) that
122+
# will be created for each repository.
121123
changesetTemplate:
122124
title: Hello World
123125
body: This adds Hello World to the README

0 commit comments

Comments
 (0)