Skip to content

Commit 187bcb4

Browse files
chore: changes default commit message to "Auto-generated commit [ci skip]" (#122)
fixes #111
1 parent e61e164 commit 187bcb4

File tree

5 files changed

+5
-5
lines changed

5 files changed

+5
-5
lines changed

.github/workflows/main.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,4 +37,4 @@ jobs:
3737
run: |
3838
cd src
3939
cd your-angular-project
40-
ng deploy --no-silent --message="Auto-generated commit [ci skip]" --name="The Buildbot" --email="[email protected]"
40+
ng deploy --no-silent --name="The Buildbot" --email="[email protected]"

README.md

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

262262
- **optional**
263-
- Default: `Auto-generated commit` (string)
263+
- Default: `Auto-generated commit [ci skip]` (string)
264264
- Example: `ng deploy --message="What could possibly go wrong?"`
265265

266266
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
@@ -111,7 +111,7 @@ you can provide the repository URL in the `repo` option.
111111

112112
#### --message <a name="message"></a>
113113
* __optional__
114-
* Default: `Auto-generated commit`
114+
* Default: `Auto-generated commit [ci skip]`
115115
* Example: `npx angular-cli-ghpages --message="What could possibly go wrong?"`
116116

117117
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
@@ -23,7 +23,7 @@
2323
"message": {
2424
"type": "string",
2525
"description": "The commit message.",
26-
"default": "Auto-generated commit"
26+
"default": "Auto-generated commit [ci skip]"
2727
},
2828
"branch": {
2929
"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',
4+
message: 'Auto-generated commit [ci skip]',
55
branch: 'gh-pages',
66
name: undefined,
77
email: undefined,

0 commit comments

Comments
 (0)