Skip to content

Commit 07f6635

Browse files
committed
no [ci skip] for the commit message
@fmalcher
1 parent 07231af commit 07f6635

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -296,7 +296,7 @@ Learn more about ["personal access tokens" here](https://help.github.com/article
296296
#### --message <a name="message"></a>
297297

298298
- **optional**
299-
- Default: `Auto-generated commit [ci skip]` (string)
299+
- Default: `Auto-generated commit` (string)
300300
- Example: `ng deploy --message="What could possibly go wrong?"`
301301

302302
The commit message **must be wrapped in quotes** if there are any spaces in the text.

docs/README_standalone.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -106,7 +106,7 @@ you can provide the repository URL in the `repo` option.
106106
#### --message <a name="message"></a>
107107

108108
- **optional**
109-
- Default: `Auto-generated commit [ci skip]`
109+
- Default: `Auto-generated commit`
110110
- Example: `npx angular-cli-ghpages --message="What could possibly go wrong?"`
111111

112112
The commit message **must be wrapped in quotes**.

src/deploy/schema.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@
3131
"message": {
3232
"type": "string",
3333
"description": "The commit message.",
34-
"default": "Auto-generated commit [ci skip]"
34+
"default": "Auto-generated commit"
3535
},
3636
"branch": {
3737
"type": "string",

src/engine/defaults.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
export const defaults = {
22
dir: 'dist',
33
repo: undefined,
4-
message: 'Auto-generated commit [ci skip]',
4+
message: 'Auto-generated commit',
55
branch: 'gh-pages',
66
name: undefined,
77
email: undefined,

0 commit comments

Comments
 (0)