You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+3-3Lines changed: 3 additions & 3 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -30,7 +30,7 @@ See [examples](docs/examples.md) for command patterns and example workflows.
30
30
31
31
### Configuration
32
32
33
-
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 `/rebase`, `/integration-test` and `/create-ticket`.
33
+
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`.
34
34
35
35
```yml
36
36
name: Slash Command Dispatch
@@ -45,7 +45,7 @@ jobs:
45
45
uses: peter-evans/slash-command-dispatch@v1
46
46
with:
47
47
token: ${{ secrets.REPO_ACCESS_TOKEN }}
48
-
commands: rebase, integration-test, create-ticket
48
+
commands: deploy, integration-test, create-ticket
49
49
```
50
50
51
51
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.
@@ -78,7 +78,7 @@ This means that reactions to comments will appear to be made by the user account
Copy file name to clipboardExpand all lines: docs/examples.md
+5-4Lines changed: 5 additions & 4 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -3,6 +3,7 @@
3
3
-[Use case: Execute command using a specific repository branch](#execute-command-using-a-specific-repository-branch)
4
4
-[pytest](#pytest)
5
5
-[Use case: Execute command to modify a pull request branch](#execute-command-to-modify-a-pull-request-branch)
6
+
-[black](#black)
6
7
7
8
## Use case: Execute command using a specific repository branch
8
9
@@ -59,7 +60,7 @@ jobs:
59
60
60
61
### pytest
61
62
62
-
This is a real example that uses this pattern to execute the Python test tool `pytest` against a specific branch.
63
+
This is a real example that uses this pattern to execute the Python test tool [pytest](https://github.com/pytest-dev/pytest/) against a specific branch.
63
64
64
65
```
65
66
/pytest branch=develop -v -s
@@ -167,7 +168,7 @@ jobs:
167
168
168
169
### black
169
170
170
-
This is a real example that uses this pattern to format Python code using [black](https://github.com/psf/black).
171
+
This is a real example that uses this pattern to format Python code using [Black](https://github.com/psf/black).
0 commit comments