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
+11Lines changed: 11 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -6,6 +6,17 @@ To use this action, you must have the following:
6
6
7
7
A GitHub repository with a workflow that triggers on pull request events and a DropBox Access Token. The DropBox token should have the `files.content.write` and the `sharing.write` permission.
8
8
9
+
## Recommended permissions
10
+
11
+
For the execution of this action, it must be able to comment on a PR.
12
+
This can be achieved with the following [configuration in the action](https://docs.github.com/en/actions/reference/workflow-syntax-for-github-actions#permissions) if the permissions are restricted:
13
+
14
+
```yaml
15
+
permissions:
16
+
issues: write
17
+
pull-requests: write
18
+
```
19
+
9
20
## Usage
10
21
To use this action in your workflow, follow these steps:
0 commit comments