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
+21-1Lines changed: 21 additions & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -8,6 +8,10 @@ This action automatically merges dependabot PRs.
8
8
9
9
**Required** A github token.
10
10
11
+
### `exclude`
12
+
13
+
*Optional* An array of packages that you don't want to auto-merge and would like to manually review to decide whether to upgrade or not.
14
+
11
15
## Example usage
12
16
13
17
```yml
@@ -30,4 +34,20 @@ jobs:
30
34
github-token: ${{secrets.github_token}}
31
35
```
32
36
33
-
Note: The `github_token` is automatically provided by Github Actions, which we access using `secrets.github_token` and supply to the action as an input `github-token`
37
+
**Note**
38
+
39
+
- The `github_token` is automatically provided by Github Actions, which we access using `secrets.github_token` and supply to the action as an input `github-token`.
40
+
- Make sure to use `needs: <jobs>` to delay the auto-merging until CI checks (test/build) are passed.
0 commit comments