Commit 5b6c931
committed
Correct key name in "Close stale issues" workflow
The previous incorrect key name `permission` caused the workflow run to error:
```
Invalid workflow file : .github/workflows/close-stale-issues.yml#L7
The workflow is not valid. .github/workflows/close-stale-issues.yml (Line: 7, Col: 1): Unexpected value 'permission'
```
The correct key name is `permissions`:
https://docs.github.com/en/actions/learn-github-actions/workflow-syntax-for-github-actions#permissions1 parent d27fa24 commit 5b6c931
1 file changed
+1
-1
lines changed| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
4 | 4 | | |
5 | 5 | | |
6 | 6 | | |
7 | | - | |
| 7 | + | |
8 | 8 | | |
9 | 9 | | |
10 | 10 | | |
| |||
0 commit comments