Skip to content

Commit 7c0d0d6

Browse files
committed
Update documentation
1 parent 0e4600d commit 7c0d0d6

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ See it in action with the following live demos.
3636

3737
### Standard configuration
3838

39-
The following workflow should be configured in the repository where commands will be dispatched from. This example will respond to comments containing the slash commands `/deploy`, `/integration-test` and `/create-ticket`.
39+
The following workflow should be configured in the repository where commands will be dispatched from. This example will respond to comments containing the slash commands `/deploy`, `/integration-test` and `/build-docs`.
4040

4141
```yml
4242
name: Slash Command Dispatch
@@ -51,7 +51,7 @@ jobs:
5151
uses: peter-evans/slash-command-dispatch@v1
5252
with:
5353
token: ${{ secrets.REPO_ACCESS_TOKEN }}
54-
commands: deploy, integration-test, create-ticket
54+
commands: deploy, integration-test, build-docs
5555
```
5656
5757
This action also features [advanced configuration](docs/advanced-configuration.md) that allows each command to be configured individually if necessary. Use the standard configuration shown above unless you require advanced features.
@@ -84,7 +84,7 @@ This means that reactions to comments will appear to be made by the user account
8484
with:
8585
token: ${{ secrets.REPO_ACCESS_TOKEN }}
8686
reaction-token: ${{ secrets.GITHUB_TOKEN }}
87-
commands: deploy, integration-test, create-ticket
87+
commands: deploy, integration-test, build-docs
8888
```
8989

9090
## Handling dispatched commands

docs/advanced-configuration.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ For example, the following basic configuration means that all commands must have
1111
uses: peter-evans/slash-command-dispatch@v1
1212
with:
1313
token: ${{ secrets.REPO_ACCESS_TOKEN }}
14-
commands: rebase, integration-test, create-ticket
14+
commands: deploy, integration-test, build-docs
1515
permission: admin
1616
```
1717

0 commit comments

Comments
 (0)