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
+15-3Lines changed: 15 additions & 3 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -17,6 +17,16 @@ This action adds to Pull Request descriptions using markdown. It checks if the
17
17
18
18
`github_token`: Usually ${{ secrets.GITHUB_TOKEN }}, but a personal access token can also be used
19
19
20
+
## Permissions
21
+
22
+
Pull requests from forks have reduced job running rights. Provide your GITHUB_TOKEN with explicit permissions to change that. Read more [here](https://docs.github.com/en/actions/security-guides/automatic-token-authentication#permissions-for-the-github_token).
23
+
24
+
```
25
+
permissions:
26
+
pull-requests: write
27
+
```
28
+
29
+
20
30
## Example
21
31
22
32
Create or modify a GitHub workflow, like below. E.g. `./github/workflows/pr-append.yml`
0 commit comments