Skip to content

Commit b2807d1

Browse files
committed
Update README.md
1 parent c8bc2cd commit b2807d1

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

README.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -23,15 +23,15 @@ grunt.loadNpmTasks('grunt-github-release-notes');
2323

2424
### Overview
2525
In your project's Gruntfile, add a section named `hello` to the data object passed into `grunt.initConfig()`.
26-
**All `token`, `username` and `repo` are required.**
26+
**`token`, `username` and `repo` are required.**
2727

2828
```js
2929
gren: {
3030
release: {
3131
options: {
32-
token: {github_token},
33-
username: {github_username},
34-
repo: {github_repo_name}
32+
token: 'GITHUB_TOKEN',
33+
username: 'GITHUB_USERNAME',
34+
repo: 'GITHUB_REPO_NAME'
3535
}
3636
}
3737
}
@@ -45,4 +45,4 @@ There are optional arguments such as:
4545
- `draft: true` To set the release as a draft. Default: `false`
4646
- `prerelease: true` To set the release as a prerelease. Default: `false`
4747
- `prefix: 'v'` Add a prefix to the tag version `e.g. v1.0.1`.
48-
- `force: true` Fails the task if the task presents any errors. Default: `false`
48+
- `force: true` Doesn't fail the task if the task presents any errors. Default: `false`

0 commit comments

Comments
 (0)