File tree Expand file tree Collapse file tree 1 file changed +6
-4
lines changed Expand file tree Collapse file tree 1 file changed +6
-4
lines changed Original file line number Diff line number Diff line change @@ -105,19 +105,21 @@ func getGitConfig(attribute string) (string, error) {
105105const campaignSpecTmpl = `name: NAME-OF-YOUR-CAMPAIGN
106106description: 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".
110109on:
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.
115116steps:
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.
121123changesetTemplate:
122124 title: Hello World
123125 body: This adds Hello World to the README
You can’t perform that action at this time.
0 commit comments